2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
6 <refentry id="systemd-socket-activate"
7 xmlns:xi="http://www.w3.org/2001/XInclude">
10 <title>systemd-socket-activate</title>
11 <productname>systemd</productname>
15 <refentrytitle>systemd-socket-activate</refentrytitle>
16 <manvolnum>1</manvolnum>
20 <refname>systemd-socket-activate</refname>
21 <refpurpose>Test socket activation of daemons</refpurpose>
26 <command>systemd-socket-activate</command>
27 <arg choice="opt" rep="repeat">OPTIONS</arg>
28 <arg choice="plain"><replaceable>daemon</replaceable></arg>
29 <arg choice="opt" rep="repeat">OPTIONS</arg>
34 <title>Description</title>
36 <para><command>systemd-socket-activate</command> may be used to launch a socket-activated service program from the
37 command line for testing purposes. It may also be used to launch individual instances of the service program per
41 <para>The daemon to launch and its options should be specified
42 after options intended for <command>systemd-socket-activate</command>.
45 <para>If the <option>--inetd</option> option is given, the socket file descriptor will be used as the standard
46 input and output of the launched process. Otherwise, standard input and output will be inherited, and sockets will
47 be passed through file descriptors 3 and higher. Sockets passed through <varname>$LISTEN_FDS</varname> to
48 <command>systemd-socket-activate</command> will be passed through to the daemon, in the original positions. Other sockets
49 specified with <option>--listen=</option> will use consecutive descriptors. By default,
50 <command>systemd-socket-activate</command> listens on a stream socket, use <option>--datagram</option> and
51 <option>--seqpacket</option> to listen on datagram or sequential packet sockets instead (see below).
56 <title>Options</title>
59 <term><option>-l <replaceable>address</replaceable></option></term>
60 <term><option>--listen=<replaceable>address</replaceable></option></term>
62 <listitem><para>Listen on this <replaceable>address</replaceable>.
63 Takes a string like <literal>2000</literal> or
64 <literal>127.0.0.1:2001</literal>.</para>
66 <xi:include href="version-info.xml" xpointer="v230"/>
71 <term><option>-a</option></term>
72 <term><option>--accept</option></term>
74 <listitem><para>Launch an instance of the service program for each connection and pass the connection
77 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
81 <term><option>-d</option></term>
82 <term><option>--datagram</option></term>
84 <listitem><para>Listen on a datagram socket (<constant>SOCK_DGRAM</constant>), instead of a stream socket
85 (<constant>SOCK_STREAM</constant>). May not be combined with <option>--seqpacket</option>.</para>
87 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
91 <term><option>--seqpacket</option></term>
93 <listitem><para>Listen on a sequential packet socket (<constant>SOCK_SEQPACKET</constant>), instead of a stream
94 socket (<constant>SOCK_STREAM</constant>). May not be combined with
95 <option>--datagram</option>.</para>
97 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
101 <term><option>--inetd</option></term>
103 <listitem><para>Use the inetd protocol for passing file descriptors, i.e. as standard input and standard
104 output, instead of the new-style protocol for passing file descriptors using <varname>$LISTEN_FDS</varname>
107 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
111 <term><option>-E <replaceable>VAR</replaceable><optional>=<replaceable>VALUE</replaceable></optional></option></term>
112 <term><option>--setenv=<replaceable>VAR</replaceable><optional>=<replaceable>VALUE</replaceable></optional></option></term>
114 <listitem><para>Add this variable to the environment of the
115 launched process. If <replaceable>VAR</replaceable> is
116 followed by <literal>=</literal>, assume that it is a
117 variable–value pair. Otherwise, obtain the value from the
118 environment of <command>systemd-socket-activate</command> itself.
121 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
125 <term><option>--fdname=</option><replaceable>NAME</replaceable><optional>:<replaceable>NAME</replaceable>…</optional></term>
127 <listitem><para>Specify names for the file descriptors passed. This is equivalent to setting
128 <varname>FileDescriptorName=</varname> in socket unit files, and enables use of
129 <citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
130 Multiple entries may be specifies using separate options or by separating names with colons
131 (<literal>:</literal>) in one option. In case more names are given than descriptors, superfluous ones will be
132 ignored. In case less names are given than descriptors, the remaining file descriptors will be unnamed.
135 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
138 <xi:include href="standard-options.xml" xpointer="help" />
139 <xi:include href="standard-options.xml" xpointer="version" />
144 <title>Environment variables</title>
145 <variablelist class='environment-variables'>
147 <term><varname>$LISTEN_FDS</varname></term>
148 <term><varname>$LISTEN_PID</varname></term>
149 <term><varname>$LISTEN_FDNAMES</varname></term>
152 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
154 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
158 <term><varname>$SYSTEMD_LOG_TARGET</varname></term>
159 <term><varname>$SYSTEMD_LOG_LEVEL</varname></term>
160 <term><varname>$SYSTEMD_LOG_TIME</varname></term>
161 <term><varname>$SYSTEMD_LOG_COLOR</varname></term>
162 <term><varname>$SYSTEMD_LOG_LOCATION</varname></term>
164 <listitem><para>Same as in
165 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>.</para>
167 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
173 <title>Examples</title>
176 <title>Run an echo server on port 2000</title>
178 <programlisting>$ systemd-socket-activate -l 2000 --inetd -a cat</programlisting>
182 <title>Run a socket-activated instance of <citerefentry><refentrytitle>systemd-journal-gatewayd</refentrytitle><manvolnum>8</manvolnum></citerefentry></title>
184 <programlisting>$ systemd-socket-activate -l 19531 /usr/lib/systemd/systemd-journal-gatewayd</programlisting>
189 <title>See Also</title>
191 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
192 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
193 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
194 <citerefentry><refentrytitle>systemd-run</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
195 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
196 <citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
197 <citerefentry project='man-pages'><refentrytitle>cat</refentrytitle><manvolnum>1</manvolnum></citerefentry>