]> git.proxmox.com Git - systemd.git/blame - man/systemd-socket-activate.xml
Imported Upstream version 231
[systemd.git] / man / systemd-socket-activate.xml
CommitLineData
f47781d8 1<?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
663996b3
MS
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
e735f4d4 6 This file is part of systemd.
663996b3 7
e735f4d4 8 Copyright 2013 Zbigniew Jędrzejewski-Szmek
663996b3 9
e735f4d4
MP
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
663996b3 14
e735f4d4
MP
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
663996b3 19
e735f4d4
MP
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
663996b3
MS
22-->
23
aa27b158 24<refentry id="systemd-socket-activate"
60f067b4 25 xmlns:xi="http://www.w3.org/2001/XInclude">
663996b3
MS
26
27 <refentryinfo>
aa27b158 28 <title>systemd-socket-activate</title>
663996b3
MS
29 <productname>systemd</productname>
30
31 <authorgroup>
32 <author>
33 <contrib>Developer</contrib>
34 <firstname>Zbigniew</firstname>
35 <surname>Jędrzejewski-Szmek</surname>
36 <email>zbyszek@in.waw.pl</email>
37 </author>
38 </authorgroup>
39 </refentryinfo>
40
41 <refmeta>
aa27b158
MP
42 <refentrytitle>systemd-socket-activate</refentrytitle>
43 <manvolnum>1</manvolnum>
663996b3
MS
44 </refmeta>
45
46 <refnamediv>
aa27b158 47 <refname>systemd-socket-activate</refname>
663996b3
MS
48 <refpurpose>Test socket activation of daemons</refpurpose>
49 </refnamediv>
50
51 <refsynopsisdiv>
52 <cmdsynopsis>
aa27b158 53 <command>systemd-socket-activate</command>
663996b3
MS
54 <arg choice="opt" rep="repeat">OPTIONS</arg>
55 <arg choice="plain"><replaceable>daemon</replaceable></arg>
56 <arg choice="opt" rep="repeat">OPTIONS</arg>
57 </cmdsynopsis>
58 </refsynopsisdiv>
59
60 <refsect1>
61 <title>Description</title>
62
aa27b158 63 <para><command>systemd-socket-activate</command> may be used to launch a socket-activated service binary from the command
4c89c718 64 line for testing purposes. It may also be used to launch individual instances of the service binary per connection.
663996b3
MS
65 </para>
66
e3bff60a 67 <para>The daemon to launch and its options should be specified
aa27b158 68 after options intended for <command>systemd-socket-activate</command>.
663996b3
MS
69 </para>
70
4c89c718
MP
71 <para>If the <option>--inetd</option> option is given, the socket file descriptor will be used as the standard
72 input and output of the launched process. Otherwise, standard input and output will be inherited, and sockets will
73 be passed through file descriptors 3 and higher. Sockets passed through <varname>$LISTEN_FDS</varname> to
aa27b158 74 <command>systemd-socket-activate</command> will be passed through to the daemon, in the original positions. Other sockets
4c89c718 75 specified with <option>--listen=</option> will use consecutive descriptors. By default,
aa27b158 76 <command>systemd-socket-activate</command> listens on a stream socket, use <option>--datagram</option> and
4c89c718 77 <option>--seqpacket</option> to listen on datagram or sequential packet sockets instead (see below).
663996b3
MS
78 </para>
79 </refsect1>
80
81 <refsect1>
82 <title>Options</title>
83 <variablelist>
663996b3
MS
84 <varlistentry>
85 <term><option>-l <replaceable>address</replaceable></option></term>
86 <term><option>--listen=<replaceable>address</replaceable></option></term>
87
88 <listitem><para>Listen on this <replaceable>address</replaceable>.
89 Takes a string like <literal>2000</literal> or
90 <literal>127.0.0.1:2001</literal>.</para>
91 </listitem>
92 </varlistentry>
93
94 <varlistentry>
95 <term><option>-a</option></term>
96 <term><option>--accept</option></term>
97
4c89c718
MP
98 <listitem><para>Launch an instance of the service binary for each connection and pass the connection
99 socket.</para></listitem>
100 </varlistentry>
101
102 <varlistentry>
103 <term><option>-d</option></term>
104 <term><option>--datagram</option></term>
105
106 <listitem><para>Listen on a datagram socket (<constant>SOCK_DGRAM</constant>), instead of a stream socket
107 (<constant>SOCK_STREAM</constant>). May not be combined with <option>--seqpacket</option>.</para></listitem>
108 </varlistentry>
109
110 <varlistentry>
111 <term><option>--seqpacket</option></term>
112
113 <listitem><para>Listen on a sequential packet socket (<constant>SOCK_SEQPACKET</constant>), instead of a stream
114 socket (<constant>SOCK_STREAM</constant>). May not be combined with
115 <option>--datagram</option>.</para></listitem>
116 </varlistentry>
117
118 <varlistentry>
119 <term><option>--inetd</option></term>
120
121 <listitem><para>Use the inetd protocol for passing file descriptors, i.e. as standard input and standard
122 output, instead of the new-style protocol for passing file descriptors using <varname>$LISTEN_FDS</varname>
123 (see above).</para></listitem>
663996b3
MS
124 </varlistentry>
125
126 <varlistentry>
127 <term><option>-E <replaceable>VAR</replaceable><optional>=<replaceable>VALUE</replaceable></optional></option></term>
60f067b4 128 <term><option>--setenv=<replaceable>VAR</replaceable><optional>=<replaceable>VALUE</replaceable></optional></option></term>
663996b3
MS
129
130 <listitem><para>Add this variable to the environment of the
131 launched process. If <replaceable>VAR</replaceable> is
14228c0d
MB
132 followed by <literal>=</literal>, assume that it is a
133 variable–value pair. Otherwise, obtain the value from the
aa27b158 134 environment of <command>systemd-socket-activate</command> itself.
663996b3
MS
135 </para></listitem>
136 </varlistentry>
60f067b4 137
6300502b 138 <varlistentry>
aa27b158
MP
139 <term><option>--fdname=</option><replaceable>NAME</replaceable><optional>:<replaceable>NAME</replaceable>...</optional></term>
140
141 <listitem><para>Specify names for the file descriptors passed. This is equivalent to setting
142 <varname>FileDescriptorName=</varname> in socket unit files, and enables use of
143 <citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
144 Multiple entries may be specifies using separate options or by separating names with colons
5a920b42 145 (<literal>:</literal>) in one option. In case more names are given than descriptors, superfluous ones willl be
aa27b158
MP
146 ignored. In case less names are given than descriptors, the remaining file descriptors will be unnamed.
147 </para></listitem>
6300502b
MP
148 </varlistentry>
149
60f067b4
JS
150 <xi:include href="standard-options.xml" xpointer="help" />
151 <xi:include href="standard-options.xml" xpointer="version" />
663996b3
MS
152 </variablelist>
153 </refsect1>
154
155 <refsect1>
156 <title>Environment variables</title>
157 <variablelist class='environment-variables'>
158 <varlistentry>
159 <term><varname>$LISTEN_FDS</varname></term>
160 <term><varname>$LISTEN_PID</varname></term>
6300502b 161 <term><varname>$LISTEN_FDNAMES</varname></term>
663996b3
MS
162
163 <listitem><para>See
164 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para></listitem>
165 </varlistentry>
166
167 <varlistentry>
168 <term><varname>$SYSTEMD_LOG_TARGET</varname></term>
169 <term><varname>$SYSTEMD_LOG_LEVEL</varname></term>
170 <term><varname>$SYSTEMD_LOG_COLOR</varname></term>
171 <term><varname>$SYSTEMD_LOG_LOCATION</varname></term>
172
173 <listitem><para>Same as in
174 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>.</para></listitem>
175 </varlistentry>
176 </variablelist>
177 </refsect1>
178
179 <refsect1>
5eef597e 180 <title>Examples</title>
663996b3 181
5eef597e
MP
182 <example>
183 <title>Run an echo server on port 2000</title>
663996b3 184
aa27b158 185 <programlisting>$ systemd-socket-activate -l 2000 --inetd -a cat</programlisting>
5eef597e 186 </example>
663996b3 187
5eef597e 188 <example>
db2df898 189 <title>Run a socket-activated instance of <citerefentry><refentrytitle>systemd-journal-gatewayd</refentrytitle><manvolnum>8</manvolnum></citerefentry></title>
663996b3 190
aa27b158 191 <programlisting>$ systemd-socket-activate -l 19531 /usr/lib/systemd/systemd-journal-gatewayd</programlisting>
5eef597e 192 </example>
663996b3
MS
193 </refsect1>
194
195 <refsect1>
196 <title>See Also</title>
197 <para>
198 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
199 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
200 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
6300502b
MP
201 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
202 <citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
e3bff60a 203 <citerefentry project='man-pages'><refentrytitle>cat</refentrytitle><manvolnum>1</manvolnum></citerefentry>
663996b3
MS
204 </para>
205 </refsect1>
206</refentry>