]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemctl.xml
acpi-fpdt: break on zero or negative length read
[thirdparty/systemd.git] / man / systemctl.xml
CommitLineData
7874bcd6
LP
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
4a6022f0 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
7874bcd6
LP
4
5<!--
4a6022f0 6This file is part of systemd.
7874bcd6 7
4a6022f0 8Copyright 2010 Lennart Poettering
7874bcd6 9
4a6022f0
ZJS
10systemd is free software; you can redistribute it and/or modify it
11under the terms of the GNU Lesser General Public License as published by
12the Free Software Foundation; either version 2.1 of the License, or
13(at your option) any later version.
7874bcd6 14
4a6022f0
ZJS
15systemd is distributed in the hope that it will be useful, but
16WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18Lesser General Public License for more details.
7874bcd6 19
4a6022f0
ZJS
20You should have received a copy of the GNU Lesser General Public License
21along with systemd; If not, see <http://www.gnu.org/licenses/>.
7874bcd6
LP
22-->
23
ee5762e3 24<refentry id="systemctl">
7874bcd6 25
4a6022f0
ZJS
26 <refentryinfo>
27 <title>systemctl</title>
28 <productname>systemd</productname>
29
30 <authorgroup>
31 <author>
32 <contrib>Developer</contrib>
33 <firstname>Lennart</firstname>
34 <surname>Poettering</surname>
35 <email>lennart@poettering.net</email>
36 </author>
37 </authorgroup>
38 </refentryinfo>
39
40 <refmeta>
41 <refentrytitle>systemctl</refentrytitle>
42 <manvolnum>1</manvolnum>
43 </refmeta>
44
45 <refnamediv>
46 <refname>systemctl</refname>
47 <refpurpose>Control the systemd system and service manager</refpurpose>
48 </refnamediv>
49
50 <refsynopsisdiv>
51 <cmdsynopsis>
52 <command>systemctl</command>
53 <arg choice="opt" rep="repeat">OPTIONS</arg>
54 <arg choice="plain">COMMAND</arg>
55 <arg choice="opt" rep="repeat">NAME</arg>
56 </cmdsynopsis>
57 </refsynopsisdiv>
58
59 <refsect1>
60 <title>Description</title>
61
62 <para><command>systemctl</command> may be used to
63 introspect and control the state of the
64 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>
65 system and service manager.</para>
c9197a76
VP
66
67 <para>For Unit Commands the <replaceable>NAME</replaceable> represents full name of unit.
68 <programlisting>
69systemctl start foo.service
70 </programlisting>
71 For Unit File Commands the <replaceable>NAME</replaceable> represents full name of the unit file, or absolute path to the unit file.
72 <programlisting>
73systemctl start /path/to/foo.service
74 </programlisting>
75 While working with services/service files, <command>systemctl</command> is able to append .service suffix when it is missing.
76 <programlisting>
77systemctl start foo
78 </programlisting></para>
4a6022f0
ZJS
79 </refsect1>
80
81 <refsect1>
82 <title>Options</title>
83
84 <para>The following options are understood:</para>
85
86 <variablelist>
87 <varlistentry>
88 <term><option>-h</option></term>
89 <term><option>--help</option></term>
90
91 <listitem><para>Prints a short help
92 text and exits.</para></listitem>
93 </varlistentry>
94
95 <varlistentry>
96 <term><option>--version</option></term>
97
98 <listitem>
99 <para>Prints a short version string and exits.</para>
100 </listitem>
101 </varlistentry>
102
103 <varlistentry>
104 <term><option>-t</option></term>
105 <term><option>--type=</option></term>
106
107 <listitem>
e9dd9f95 108 <para>The argument should be a comma-separated list of unit
20b3f379 109 types such as <option>service</option> and
9b9b3d36
MW
110 <option>socket</option>.
111 </para>
20b3f379
ZJS
112
113 <para>If one of the arguments is a unit type, when listing
7b870f60 114 units, limit display to certain unit types. Otherwise, units
4a6022f0
ZJS
115 of all types will be shown.</para>
116
20b3f379 117 <para>As a special case, if one of the arguments is
4a6022f0
ZJS
118 <option>help</option>, a list of allowed values will be
119 printed and the program will exit.</para>
120 </listitem>
121 </varlistentry>
122
9b9b3d36
MW
123 <varlistentry>
124 <term><option>--state=</option></term>
125
126 <listitem>
0f85cbe1
ZJS
127 <para>The argument should be a comma-separated list of unit LOAD,
128 SUB, or ACTIVE states. When listing units, show only those
129 in specified states.</para>
9b9b3d36
MW
130 </listitem>
131 </varlistentry>
132
4a6022f0
ZJS
133 <varlistentry>
134 <term><option>-p</option></term>
135 <term><option>--property=</option></term>
136
137 <listitem>
54c31a79
LP
138 <para>When showing unit/job/manager properties with the
139 <command>show</command> command, limit display to certain
7b870f60 140 properties as specified as argument. If not specified, all
54c31a79 141 set properties are shown. The argument should be a
d2bbca68 142 comma-separated list of property names, such as
7b870f60 143 <literal>MainPID</literal>. If specified more than once, all
033a842c 144 properties with the specified names are shown.</para>
4a6022f0
ZJS
145 </listitem>
146 </varlistentry>
147
148 <varlistentry>
149 <term><option>-a</option></term>
150 <term><option>--all</option></term>
151
152 <listitem>
a5e4972c
LP
153 <para>When listing units, show all loaded units, regardless
154 of their state, including inactive units. When showing
4a6022f0
ZJS
155 unit/job/manager properties, show all properties regardless
156 whether they are set or not.</para>
a5e4972c
LP
157 <para>To list all units installed on the system, use the
158 <command>list-unit-files</command> command instead.</para>
4a6022f0
ZJS
159 </listitem>
160 </varlistentry>
161
afba4199
ZJS
162 <varlistentry>
163 <term><option>--reverse</option></term>
164
165 <listitem>
166 <para>Show reverse dependencies between units with
167 <command>list-dependencies</command>, i.e. units with
168 dependencies of type <varname>Wants=</varname> or
169 <varname>Requires=</varname> on the given unit.
170 </para>
171 </listitem>
172 </varlistentry>
173
174 <varlistentry>
175 <term><option>--after</option></term>
176 <term><option>--before</option></term>
177
178 <listitem>
7b870f60
JE
179 <para>Show which units are started after or before
180 with <command>list-dependencies</command>, respectively.
afba4199
ZJS
181 </para>
182 </listitem>
183 </varlistentry>
184
4a6022f0 185 <varlistentry>
98a6e132 186 <term><option>-l</option></term>
4a6022f0
ZJS
187 <term><option>--full</option></term>
188
189 <listitem>
3fde5f30 190 <para>Do not ellipsize unit names, process tree entries, and
4a6022f0
ZJS
191 truncate unit descriptions in the output of
192 <command>list-units</command> and
193 <command>list-jobs</command>.</para>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry>
198 <term><option>--fail</option></term>
199
200 <listitem>
201 <para>If the requested operation conflicts with a pending
7b870f60 202 unfinished job, fail the command. If this is not specified,
4a6022f0
ZJS
203 the requested operation will replace the pending job, if
204 necessary. Do not confuse with
205 <option>--failed</option>.</para>
206 </listitem>
207 </varlistentry>
208
991f2a39
ZJS
209 <varlistentry>
210 <term><option>--show-types</option></term>
211
212 <listitem>
213 <para>When showing sockets, show the type of the socket.</para>
214 </listitem>
215 </varlistentry>
216
23ade460
MS
217 <varlistentry>
218 <term><option>--irreversible</option></term>
219
220 <listitem>
221 <para>Mark this transaction's jobs as irreversible. This prevents
222 future conflicting transactions from replacing these jobs.
223 The jobs can still be cancelled using the <command>cancel</command>
224 command.</para>
225 </listitem>
226 </varlistentry>
227
4a6022f0
ZJS
228 <varlistentry>
229 <term><option>--ignore-dependencies</option></term>
230
231 <listitem>
7b870f60
JE
232 <para>When enqueuing a new job, ignore all its dependencies
233 and execute it immediately. If passed, no required units of
4a6022f0
ZJS
234 the unit passed will be pulled in, and no ordering
235 dependencies will be honored. This is mostly a debugging and
236 rescue tool for the administrator and should not be used by
237 applications.</para>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry>
242 <term><option>-i</option></term>
243 <term><option>--ignore-inhibitors</option></term>
244
245 <listitem>
246 <para>When system shutdown or a sleep state is requested,
247 ignore inhibitor locks. Applications can establish inhibitor
248 locks to avoid that certain important operations (such as CD
249 burning or suchlike) are interrupted by system shutdown or a
250 sleep state. Any user may take these locks and privileged
251 users may override these locks. If any locks are taken,
252 shutdown and sleep state requests will normally fail
54c31a79 253 (regardless if privileged or not) and a list of active locks
7b870f60
JE
254 is printed. However, if <option>--ignore-inhibitors</option>
255 is specified, the locks are ignored and not printed, and the
4a6022f0
ZJS
256 operation attempted anyway, possibly requiring additional
257 privileges.</para>
258 </listitem>
259 </varlistentry>
260
261 <varlistentry>
262 <term><option>-q</option></term>
263 <term><option>--quiet</option></term>
264
265 <listitem>
266 <para>Suppress output to standard output in
267 <command>snapshot</command>,
268 <command>is-active</command>,
269 <command>is-failed</command>,
270 <command>enable</command> and
271 <command>disable</command>.</para>
272 </listitem>
273 </varlistentry>
274
275 <varlistentry>
276 <term><option>--no-block</option></term>
277
278 <listitem>
279 <para>Do not synchronously wait for the requested operation
7b870f60 280 to finish. If this is not specified, the job will be
4a6022f0 281 verified, enqueued and <command>systemctl</command> will
7b870f60 282 wait until it is completed. By passing this argument, it is
4a6022f0
ZJS
283 only verified and enqueued.</para>
284 </listitem>
285 </varlistentry>
286
287 <varlistentry>
288 <term><option>--no-legend</option></term>
289
290 <listitem>
291 <para>Do not print a legend, i.e. the column headers and
292 the footer with hints.</para>
293 </listitem>
294 </varlistentry>
295
296 <varlistentry>
297 <term><option>--no-pager</option></term>
298
299 <listitem>
300 <para>Do not pipe output into a pager.</para>
301 </listitem>
302 </varlistentry>
303
304 <varlistentry>
305 <term><option>--system</option></term>
306
307 <listitem>
308 <para>Talk to the systemd system manager. (Default)</para>
309 </listitem>
310 </varlistentry>
311
312 <varlistentry>
313 <term><option>--user</option></term>
314
315 <listitem>
316 <para>Talk to the systemd manager of the calling
317 user.</para>
318 </listitem>
319 </varlistentry>
320
321 <varlistentry>
322 <term><option>--no-wall</option></term>
323
324 <listitem>
7b870f60 325 <para>Do not send wall message before halt, power-off,
4a6022f0
ZJS
326 reboot.</para>
327 </listitem>
328 </varlistentry>
329
330 <varlistentry>
331 <term><option>--global</option></term>
332
333 <listitem>
334 <para>When used with <command>enable</command> and
335 <command>disable</command>, operate on the global user
336 configuration directory, thus enabling or disabling a unit
337 file globally for all future logins of all users.</para>
338 </listitem>
339 </varlistentry>
340
341 <varlistentry>
342 <term><option>--no-reload</option></term>
343
344 <listitem>
345 <para>When used with <command>enable</command> and
346 <command>disable</command>, do not implicitly reload daemon
347 configuration after executing the changes.</para>
348 </listitem>
349 </varlistentry>
350
351 <varlistentry>
352 <term><option>--no-ask-password</option></term>
353
354 <listitem>
355 <para>When used with <command>start</command> and related
356 commands, disables asking for passwords. Background services
357 may require input of a password or passphrase string, for
358 example to unlock system hard disks or cryptographic
359 certificates. Unless this option is specified and the
7b870f60 360 command is invoked from a terminal,
4a6022f0
ZJS
361 <command>systemctl</command> will query the user on the
362 terminal for the necessary secrets. Use this option to
7b870f60 363 switch this behavior off. In this case, the password must be
4a6022f0
ZJS
364 supplied by some other means (for example graphical password
365 agents) or the service might fail. This also disables
366 querying the user for authentication for privileged
367 operations.</para>
368 </listitem>
369
370 </varlistentry>
371
372 <varlistentry>
373 <term><option>--kill-who=</option></term>
374
375 <listitem>
376 <para>When used with <command>kill</command>, choose which
377 processes to kill. Must be one of <option>main</option>,
378 <option>control</option> or <option>all</option> to select
379 whether to kill only the main process of the unit, the
7b870f60 380 control process or all processes of the unit. If omitted,
4a6022f0
ZJS
381 defaults to <option>all</option>.</para>
382 </listitem>
383
384 </varlistentry>
385
386 <varlistentry>
387 <term><option>-s</option></term>
388 <term><option>--signal=</option></term>
389
390 <listitem>
391 <para>When used with <command>kill</command>, choose which
392 signal to send to selected processes. Must be one of the
05cc7267 393 well known signal specifiers such as <constant>SIGTERM</constant>, <constant>SIGINT</constant> or
7b870f60 394 <constant>SIGSTOP</constant>. If omitted, defaults to
4a6022f0
ZJS
395 <option>SIGTERM</option>.</para>
396 </listitem>
397 </varlistentry>
398
399 <varlistentry>
400 <term><option>-f</option></term>
401 <term><option>--force</option></term>
402
403 <listitem>
404 <para>When used with <command>enable</command>, overwrite
405 any existing conflicting symlinks.</para>
406
407 <para>When used with <command>halt</command>,
408 <command>poweroff</command>, <command>reboot</command> or
7b870f60 409 <command>kexec</command>, execute the selected operation
4a6022f0
ZJS
410 without shutting down all units. However, all processes will
411 be killed forcibly and all file systems are unmounted or
412 remounted read-only. This is hence a drastic but relatively
413 safe option to request an immediate reboot. If
414 <option>--force</option> is specified twice for these
415 operations, they will be executed immediately without
416 terminating any processes or umounting any file
417 systems. Warning: specifying <option>--force</option> twice
418 with any of these operations might result in data
419 loss.</para>
420 </listitem>
421 </varlistentry>
422
423 <varlistentry>
424 <term><option>--root=</option></term>
425
426 <listitem>
427 <para>When used with
428 <command>enable</command>/<command>disable</command>/<command>is-enabled</command>
429 (and related commands), use alternative root path when
430 looking for unit files.</para>
431 </listitem>
432
433 </varlistentry>
434
435 <varlistentry>
436 <term><option>--runtime</option></term>
437
438 <listitem>
a330b376
LP
439 <para>When used with <command>enable</command>,
440 <command>disable</command>, <command>is-enabled</command>
4a6022f0 441 (and related commands), make changes only temporarily, so
a330b376 442 that they are lost on the next reboot. This will have the
4a6022f0
ZJS
443 effect that changes are not made in subdirectories of
444 <filename>/etc</filename> but in <filename>/run</filename>,
445 with identical immediate effects, however, since the latter
446 is lost on reboot, the changes are lost too.</para>
a330b376
LP
447
448 <para>Similar, when used with
fbce1139 449 <command>set-property</command>, make changes only
a330b376
LP
450 temporarily, so that they are lost on the next
451 reboot.</para>
4a6022f0
ZJS
452 </listitem>
453 </varlistentry>
454
455 <varlistentry>
456 <term><option>-H</option></term>
457 <term><option>--host</option></term>
458
459 <listitem>
460 <para>Execute operation remotely. Specify a hostname, or
05cc7267 461 username and hostname separated by <literal>@</literal>, to connect to. This
4a6022f0
ZJS
462 will use SSH to talk to the remote systemd
463 instance.</para>
464 </listitem>
465 </varlistentry>
466
467 <varlistentry>
468 <term><option>-P</option></term>
469 <term><option>--privileged</option></term>
470
471 <listitem>
472 <para>Acquire privileges via PolicyKit before executing the
473 operation.</para>
474 </listitem>
475 </varlistentry>
476
477 <varlistentry>
478 <term><option>-n</option></term>
479 <term><option>--lines=</option></term>
480
481 <listitem>
7b870f60 482 <para>When used with <command>status</command>, controls the
4a6022f0
ZJS
483 number of journal lines to show, counting from the most
484 recent ones. Takes a positive integer argument. Defaults to
485 10.</para>
486 </listitem>
487 </varlistentry>
488
489 <varlistentry>
490 <term><option>-o</option></term>
491 <term><option>--output=</option></term>
492
493 <listitem>
7b870f60 494 <para>When used with <command>status</command>, controls the
4a6022f0 495 formatting of the journal entries that are shown. For the
7b870f60 496 available choices, see
4a6022f0
ZJS
497 <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
498 Defaults to <literal>short</literal>.</para>
499 </listitem>
500 </varlistentry>
501
5d0c05e5
LN
502 <varlistentry>
503 <term><option>--plain</option></term>
504
505 <listitem>
7b870f60 506 <para>When used with <command>list-dependencies</command>,
5d0c05e5
LN
507 the output is printed as a list instead of a tree.</para>
508 </listitem>
509 </varlistentry>
510
4a6022f0
ZJS
511 </variablelist>
512 </refsect1>
513
514 <refsect1>
515 <title>Commands</title>
516
517 <para>The following commands are understood:</para>
518
27722f96
LN
519 <refsect2>
520 <title>Unit Commands</title>
4a6022f0 521
27722f96
LN
522 <variablelist>
523 <varlistentry>
524 <term><command>list-units</command></term>
4a6022f0 525
27722f96
LN
526 <listitem>
527 <para>List known units (subject to limitations specified
528 with <option>-t</option>).</para>
991f2a39 529
27722f96
LN
530 <para>This is the default command.</para>
531 </listitem>
532 </varlistentry>
991f2a39 533
27722f96
LN
534 <varlistentry>
535 <term><command>list-sockets</command></term>
536
537 <listitem>
538 <para>List socket units ordered by the listening address. Produces output
539 similar to
540 <programlisting>
991f2a39
ZJS
541LISTEN UNIT ACTIVATES
542/dev/initctl systemd-initctl.socket systemd-initctl.service
543...
544[::]:22 sshd.socket sshd.service
545kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service
546
5475 sockets listed.
27722f96
LN
548 </programlisting>
549 Note: because the addresses might contains spaces, this output
550 is not suitable for programmatic consumption.
551 </para>
552
553 <para>See also the options <option>--show-types</option>,
554 <option>--all</option>, and <option>--failed</option>.</para>
555 </listitem>
556 </varlistentry>
557
558 <varlistentry>
559 <term><command>start <replaceable>NAME</replaceable>...</command></term>
560
561 <listitem>
562 <para>Start (activate) one or more units specified on the
563 command line.</para>
564 </listitem>
565 </varlistentry>
566 <varlistentry>
567 <term><command>stop <replaceable>NAME</replaceable>...</command></term>
568
569 <listitem>
570 <para>Stop (deactivate) one or more units specified on the
571 command line.</para>
572 </listitem>
573 </varlistentry>
574 <varlistentry>
575 <term><command>reload <replaceable>NAME</replaceable>...</command></term>
576
577 <listitem>
578 <para>Asks all units listed on the command line to reload
579 their configuration. Note that this will reload the
580 service-specific configuration, not the unit configuration
581 file of systemd. If you want systemd to reload the
79640424 582 configuration file of a unit, use the
27722f96
LN
583 <command>daemon-reload</command> command. In other words:
584 for the example case of Apache, this will reload Apache's
585 <filename>httpd.conf</filename> in the web server, not the
586 <filename>apache.service</filename> systemd unit
587 file.</para>
588
589 <para>This command should not be confused with the
590 <command>daemon-reload</command> or <command>load</command>
591 commands.</para>
592 </listitem>
593
594 </varlistentry>
595 <varlistentry>
596 <term><command>restart <replaceable>NAME</replaceable>...</command></term>
597
598 <listitem>
599 <para>Restart one or more units specified on the command
600 line. If the units are not running yet, they will be
601 started.</para>
602 </listitem>
603 </varlistentry>
604 <varlistentry>
605 <term><command>try-restart <replaceable>NAME</replaceable>...</command></term>
606
607 <listitem>
608 <para>Restart one or more units specified on the command
609 line if the units are running. This does nothing if units are not
610 running. Note that, for compatibility with Red Hat init
611 scripts, <command>condrestart</command> is equivalent to this
612 command.</para>
613 </listitem>
614 </varlistentry>
615 <varlistentry>
616 <term><command>reload-or-restart <replaceable>NAME</replaceable>...</command></term>
617
618 <listitem>
619 <para>Reload one or more units if they support it. If not,
620 restart them instead. If the units are not running yet, they
621 will be started.</para>
622 </listitem>
623 </varlistentry>
624 <varlistentry>
625 <term><command>reload-or-try-restart <replaceable>NAME</replaceable>...</command></term>
626
627 <listitem>
628 <para>Reload one or more units if they support it. If not,
629 restart them instead. This does nothing if the units are not
630 running. Note that, for compatibility with SysV init scripts,
631 <command>force-reload</command> is equivalent to this
632 command.</para>
633 </listitem>
634 </varlistentry>
635 <varlistentry>
636 <term><command>isolate <replaceable>NAME</replaceable></command></term>
637
638 <listitem>
639 <para>Start the unit specified on the command line and its
640 dependencies and stop all others.</para>
641
642 <para>This is similar to changing the runlevel in a
643 traditional init system. The <command>isolate</command>
644 command will immediately stop processes that are not enabled
645 in the new unit, possibly including the graphical
646 environment or terminal you are currently using.</para>
647
648 <para>Note that this is allowed only on units where
649 <option>AllowIsolate=</option> is enabled. See
650 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
651 for details.</para>
652 </listitem>
653 </varlistentry>
654 <varlistentry>
655 <term><command>kill <replaceable>NAME</replaceable>...</command></term>
656
657 <listitem>
658 <para>Send a signal to one or more processes of the
659 unit. Use <option>--kill-who=</option> to select which
660 process to kill. Use <option>--kill-mode=</option> to select
661 the kill mode and <option>--signal=</option> to select the
662 signal to send.</para>
663 </listitem>
664 </varlistentry>
665 <varlistentry>
666 <term><command>is-active <replaceable>NAME</replaceable>...</command></term>
667
668 <listitem>
669 <para>Check whether any of the specified units are active
670 (i.e. running). Returns an exit code 0 if at least one is
671 active, non-zero otherwise. Unless <option>--quiet</option>
672 is specified, this will also print the current unit state to
673 STDOUT.</para>
674 </listitem>
675 </varlistentry>
676 <varlistentry>
677 <term><command>is-failed <replaceable>NAME</replaceable>...</command></term>
678
679 <listitem>
680 <para>Check whether any of the specified units are in a "failed" state.
681 Returns an exit code 0 if at least one has failed, non-zero
682 otherwise. Unless <option>--quiet</option> is specified, this
683 will also print the current unit state to
684 STDOUT.</para>
685 </listitem>
686 </varlistentry>
687 <varlistentry>
688 <term><command>status [<replaceable>NAME</replaceable>...|<replaceable>PID</replaceable>...]</command></term>
689
690 <listitem>
691 <para>Show terse runtime status information about one or
692 more units, followed by most recent log data from the
693 journal. If no units are specified, show all units (subject
694 to limitations specified with <option>-t</option>). If a PID
695 is passed, show information about the unit the process
696 belongs to.</para>
697
698 <para>This function is intended to generate human-readable
699 output. If you are looking for computer-parsable output, use
700 <command>show</command> instead.</para>
701 </listitem>
702 </varlistentry>
703 <varlistentry>
704 <term><command>show [<replaceable>NAME</replaceable>...|<replaceable>JOB</replaceable>...]</command></term>
705
706 <listitem>
707 <para>Show properties of one or more units, jobs, or the
79640424
JE
708 manager itself. If no argument is specified, properties of
709 the manager will be shown. If a unit name is specified,
27722f96 710 properties of the unit is shown, and if a job id is
79640424 711 specified, properties of the job is shown. By default, empty
27722f96 712 properties are suppressed. Use <option>--all</option> to
79640424 713 show those too. To select specific properties to show, use
27722f96
LN
714 <option>--property=</option>. This command is intended to be
715 used whenever computer-parsable output is required. Use
716 <command>status</command> if you are looking for formatted
717 human-readable output.</para>
718 </listitem>
719 </varlistentry>
720
721 <varlistentry>
722 <term><command>set-property <replaceable>NAME</replaceable> <replaceable>ASSIGNMENT</replaceable>...</command></term>
723
724 <listitem>
725 <para>Set the specified unit properties at runtime where
726 this is supported. This allows changing configuration
3fde5f30 727 parameter properties such as resource control settings at
27722f96 728 runtime. Not all properties may be changed at runtime, but
3fde5f30
LP
729 many resource control settings (primarily those in
730 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>)
27722f96
LN
731 may. The changes are applied instantly, and stored on disk
732 for future boots, unless <option>--runtime</option> is
3fde5f30
LP
733 passed, in which case the settings only apply until the
734 next reboot. The syntax of the property assignment follows
27722f96
LN
735 closely the syntax of assignments in unit files.</para>
736
737 <para>Example: <command>systemctl set-property foobar.service CPUShares=777</command></para>
738
739 <para>Note that this command allows changing multiple
740 properties at the same time, which is preferable over
741 setting them individually. Like unit file configuration
742 settings, assigning the empty list to list parameters will
743 reset the list.</para>
744 </listitem>
745 </varlistentry>
746
747 <varlistentry>
748 <term><command>help <replaceable>NAME</replaceable>...|<replaceable>PID</replaceable>...</command></term>
749
750 <listitem>
751 <para>Show manual pages for one or more units, if
752 available. If a PID is given, the manual pages for the unit
753 the process belongs to are shown.</para>
754 </listitem>
755 </varlistentry>
756
757 <varlistentry>
758 <term><command>reset-failed [<replaceable>NAME</replaceable>...]</command></term>
759
760 <listitem>
761 <para>Reset the <literal>failed</literal> state of the
762 specified units, or if no unit name is passed, reset the state of all
763 units. When a unit fails in some way (i.e. process exiting
764 with non-zero error code, terminating abnormally or timing
765 out), it will automatically enter the
766 <literal>failed</literal> state and its exit code and status
767 is recorded for introspection by the administrator until the
768 service is restarted or reset with this command.</para>
769 </listitem>
770 </varlistentry>
771
772 <varlistentry>
773 <term><command>list-dependencies <replaceable>NAME</replaceable></command></term>
774
775 <listitem>
776 <para>Shows required and wanted units of the specified
777 unit. If no unit is specified,
778 <filename>default.target</filename> is implied. Target units
779 are recursively expanded. When <option>--all</option> is
780 passed, all other units are recursively expanded as
781 well.</para>
782 </listitem>
783 </varlistentry>
784 </variablelist>
785 </refsect2>
786
787 <refsect2>
788 <title>Unit File Commands</title>
789
790 <variablelist>
791 <varlistentry>
792 <term><command>list-unit-files</command></term>
793
794 <listitem>
795 <para>List installed unit files.</para>
796 </listitem>
797 </varlistentry>
798
799 <varlistentry>
800 <term><command>enable <replaceable>NAME</replaceable>...</command></term>
801
802 <listitem>
803 <para>Enable one or more unit files or unit file instances,
804 as specified on the command line. This will create a number
805 of symlinks as encoded in the <literal>[Install]</literal>
806 sections of the unit files. After the symlinks have been
807 created, the systemd configuration is reloaded (in a way that
808 is equivalent to <command>daemon-reload</command>) to ensure
809 the changes are taken into account immediately. Note that
810 this does <emphasis>not</emphasis> have the effect of also
811 starting any of the units being enabled. If this
812 is desired, a separate <command>start</command> command must
813 be invoked for the unit. Also note that in case of instance
814 enablement, symlinks named the same as instances are created in
815 the install location, however they all point to the same
816 template unit file.</para>
817
818 <para>This command will print the actions executed. This
819 output may be suppressed by passing <option>--quiet</option>.
820 </para>
821
822 <para>Note that this operation creates only the suggested
823 symlinks for the units. While this command is the
824 recommended way to manipulate the unit configuration
825 directory, the administrator is free to make additional
826 changes manually by placing or removing symlinks in the
827 directory. This is particularly useful to create
828 configurations that deviate from the suggested default
829 installation. In this case, the administrator must make sure
830 to invoke <command>daemon-reload</command> manually as
831 necessary to ensure the changes are taken into account.
832 </para>
833
834 <para>Enabling units should not be confused with starting
835 (activating) units, as done by the <command>start</command>
836 command. Enabling and starting units is orthogonal: units
837 may be enabled without being started and started without
838 being enabled. Enabling simply hooks the unit into various
839 suggested places (for example, so that the unit is
840 automatically started on boot or when a particular kind of
841 hardware is plugged in). Starting actually spawns the daemon
842 process (in case of service units), or binds the socket (in
843 case of socket units), and so on.</para>
844
845 <para>Depending on whether <option>--system</option>,
1bee43de 846 <option>--user</option>, <option>--runtime</option>,
72f4d966 847 or <option>--global</option> is specified, this enables the unit
1bee43de
ZJS
848 for the system, for the calling user only, for only this boot of
849 the system, or for all future logins of all users, or only this
850 boot. Note that in the last case, no systemd daemon
27722f96
LN
851 configuration is reloaded.</para>
852 </listitem>
853 </varlistentry>
854
855 <varlistentry>
856 <term><command>disable <replaceable>NAME</replaceable>...</command></term>
857
858 <listitem>
859 <para>Disables one or more units. This removes all symlinks
860 to the specified unit files from the unit configuration
861 directory, and hence undoes the changes made by
862 <command>enable</command>. Note however that this removes
863 all symlinks to the unit files (i.e. including manual
864 additions), not just those actually created by
865 <command>enable</command>. This call implicitly reloads the
866 systemd daemon configuration after completing the disabling
867 of the units. Note that this command does not implicitly
868 stop the units that are being disabled. If this is desired,
869 an additional <command>stop</command> command should be
870 executed afterwards.</para>
871
872 <para>This command will print the actions executed. This
873 output may be suppressed by passing <option>--quiet</option>.
874 </para>
875
876 <para>This command honors <option>--system</option>,
72f4d966 877 <option>--user</option>, <option>--runtime</option> and
1bee43de
ZJS
878 <option>--global</option> in a similar way as
879 <command>enable</command>.</para>
27722f96
LN
880 </listitem>
881 </varlistentry>
882
883 <varlistentry>
884 <term><command>is-enabled <replaceable>NAME</replaceable>...</command></term>
885
886 <listitem>
887 <para>Checks whether any of the specified unit files are
888 enabled (as with <command>enable</command>). Returns an exit
889 code of 0 if at least one is enabled, non-zero
890 otherwise. Prints the current enable status. To suppress
891 this output, use <option>--quiet</option>.</para>
892 </listitem>
893 </varlistentry>
894
895 <varlistentry>
896 <term><command>reenable <replaceable>NAME</replaceable>...</command></term>
897
898 <listitem>
899 <para>Reenable one or more unit files, as specified on the
900 command line. This is a combination of
901 <command>disable</command> and <command>enable</command> and
902 is useful to reset the symlinks a unit is enabled with to
903 the defaults configured in the <literal>[Install]</literal>
904 section of the unit file.</para>
905 </listitem>
906 </varlistentry>
907
908 <varlistentry>
909 <term><command>preset <replaceable>NAME</replaceable>...</command></term>
910
911 <listitem>
912 <para>Reset one or more unit files, as specified on the
913 command line, to the defaults configured in the preset
914 policy files. This has the same effect as
915 <command>disable</command> or <command>enable</command>,
916 depending how the unit is listed in the preset files. For
917 more information on the preset policy format, see
918 <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
919 For more information on the concept of presets, please
920 consult the
921 <ulink url="http://freedesktop.org/wiki/Software/systemd/Preset">Preset</ulink>
922 document.</para>
923 </listitem>
924 </varlistentry>
925
926 <varlistentry>
927 <term><command>mask <replaceable>NAME</replaceable>...</command></term>
928
929 <listitem>
930 <para>Mask one or more unit files, as specified on the
931 command line. This will link these units to
932 <filename>/dev/null</filename>, making it impossible to
933 start them. This is a stronger version of
934 <command>disable</command>, since it prohibits all kinds of
935 activation of the unit, including manual activation. Use
1bee43de 936 this option with care. This honors the
72f4d966 937 <option>--runtime</option> option to only mask temporarily
1bee43de 938 until the next reoobt of the system.</para>
27722f96
LN
939 </listitem>
940 </varlistentry>
941
942 <varlistentry>
943 <term><command>unmask <replaceable>NAME</replaceable>...</command></term>
944
945 <listitem>
946 <para>Unmask one or more unit files, as specified on the
947 command line. This will undo the effect of
948 <command>mask</command>.</para>
949 </listitem>
950 </varlistentry>
951
952 <varlistentry>
953 <term><command>link <replaceable>FILENAME</replaceable>...</command></term>
954
955 <listitem>
956 <para>Link a unit file that is not in the unit file search
957 paths into the unit file search path. This requires an
958 absolute path to a unit file. The effect of this can be
959 undone with <command>disable</command>. The effect of this
960 command is that a unit file is available for
961 <command>start</command> and other commands although it
962 is not installed directly in the unit search path.</para>
963 </listitem>
964 </varlistentry>
965
966 <varlistentry>
967 <term><command>get-default</command></term>
968
969 <listitem>
970 <para>Get the default target specified
971 via <filename>default.target</filename> link.</para>
972 </listitem>
973 </varlistentry>
974
975 <varlistentry>
976 <term><command>set-default <replaceable>NAME</replaceable></command></term>
977
978 <listitem>
979 <para>Set the default target to boot into. Command links
980 <filename>default.target</filename> to the given unit.</para>
981 </listitem>
982 </varlistentry>
983 </variablelist>
984 </refsect2>
985
986 <refsect2>
987 <title>Job Commands</title>
988
989 <variablelist>
990 <varlistentry>
991 <term><command>list-jobs</command></term>
992
993 <listitem>
994 <para>List jobs that are in progress.</para>
995 </listitem>
996 </varlistentry>
997 <varlistentry>
998 <term><command>cancel <replaceable>JOB</replaceable>...</command></term>
999
1000 <listitem>
1001 <para>Cancel one or more jobs specified on the command line
1002 by their numeric job IDs. If no job ID is specified, cancel
1003 all pending jobs.</para>
1004 </listitem>
1005 </varlistentry>
1006 </variablelist>
1007 </refsect2>
1008
1009 <refsect2>
1010 <title>Snapshot Commands</title>
1011
1012 <variablelist>
1013 <varlistentry>
1014 <term><command>snapshot [<replaceable>NAME</replaceable>]</command></term>
1015
1016 <listitem>
1017 <para>Create a snapshot. If a snapshot name is specified,
1018 the new snapshot will be named after it. If none is
1019 specified, an automatic snapshot name is generated. In either
1020 case, the snapshot name used is printed to STDOUT, unless
1021 <option>--quiet</option> is specified.</para>
1022
1023 <para>A snapshot refers to a saved state of the systemd
1024 manager. It is implemented itself as a unit that is
1025 generated dynamically with this command and has dependencies
1026 on all units active at the time. At a later time, the user
1027 may return to this state by using the
1028 <command>isolate</command> command on the snapshot unit.
1029 </para>
1030
1031 <para>Snapshots are only useful for saving and restoring
1032 which units are running or are stopped, they do not
1033 save/restore any other state. Snapshots are dynamic and lost
1034 on reboot.</para>
1035 </listitem>
1036 </varlistentry>
1037 <varlistentry>
1038 <term><command>delete <replaceable>NAME</replaceable>...</command></term>
1039
1040 <listitem>
1041 <para>Remove a snapshot previously created with
1042 <command>snapshot</command>.</para>
1043 </listitem>
1044 </varlistentry>
1045 </variablelist>
1046 </refsect2>
1047
1048 <refsect2>
1049 <title>Environment Commands</title>
1050
1051 <variablelist>
1052 <varlistentry>
1053 <term><command>show-environment</command></term>
1054
1055 <listitem>
1056 <para>Dump the systemd manager environment block. The
1057 environment block will be dumped in straight-forward form
1058 suitable for sourcing into a shell script. This environment
1059 block will be passed to all processes the manager
1060 spawns.</para>
1061 </listitem>
1062 </varlistentry>
1063 <varlistentry>
1064 <term><command>set-environment <replaceable>VARIABLE=VALUE</replaceable>...</command></term>
1065
1066 <listitem>
1067 <para>Set one or more systemd manager environment variables,
1068 as specified on the command line.</para>
1069 </listitem>
1070 </varlistentry>
1071 <varlistentry>
1072 <term><command>unset-environment <replaceable>VARIABLE</replaceable>...</command></term>
1073
1074 <listitem>
1075 <para>Unset one or more systemd manager environment
1076 variables. If only a variable name is specified, it will be
1077 removed regardless of its value. If a variable and a value
1078 are specified, the variable is only removed if it has the
1079 specified value.</para>
1080 </listitem>
1081 </varlistentry>
1082 </variablelist>
1083 </refsect2>
1084
1085 <refsect2>
1086 <title>Manager Lifecycle Commands</title>
1087
1088 <variablelist>
1089 <varlistentry>
1090 <term><command>daemon-reload</command></term>
1091
1092 <listitem>
1093 <para>Reload systemd manager configuration. This will reload
1094 all unit files and recreate the entire dependency
79640424 1095 tree. While the daemon is being reloaded, all sockets systemd
27722f96
LN
1096 listens on on behalf of user configuration will stay
1097 accessible.</para> <para>This command should not be confused
1098 with the <command>load</command> or
1099 <command>reload</command> commands.</para>
1100 </listitem>
1101 </varlistentry>
1102 <varlistentry>
1103 <term><command>daemon-reexec</command></term>
1104
1105 <listitem>
1106 <para>Reexecute the systemd manager. This will serialize the
1107 manager state, reexecute the process and deserialize the
1108 state again. This command is of little use except for
79640424 1109 debugging and package upgrades. Sometimes, it might be
27722f96 1110 helpful as a heavy-weight <command>daemon-reload</command>.
79640424 1111 While the daemon is being reexecuted, all sockets systemd listening
27722f96
LN
1112 on behalf of user configuration will stay accessible.
1113 </para>
1114 </listitem>
1115 </varlistentry>
1116 </variablelist>
1117 </refsect2>
1118
1119 <refsect2>
1120 <title>System Commands</title>
1121
1122 <variablelist>
1123 <varlistentry>
1124 <term><command>default</command></term>
1125
1126 <listitem>
1127 <para>Enter default mode. This is mostly equivalent to
1128 <command>isolate default.target</command>.</para>
1129 </listitem>
1130 </varlistentry>
1131 <varlistentry>
1132 <term><command>rescue</command></term>
1133
1134 <listitem>
1135 <para>Enter rescue mode. This is mostly equivalent to
1136 <command>isolate rescue.target</command>, but also prints a
1137 wall message to all users.</para>
1138 </listitem>
1139 </varlistentry>
1140 <varlistentry>
1141 <term><command>emergency</command></term>
1142
1143 <listitem>
1144 <para>Enter emergency mode. This is mostly equivalent to
1145 <command>isolate emergency.target</command>, but also prints
1146 a wall message to all users.</para>
1147 </listitem>
1148 </varlistentry>
1149 <varlistentry>
1150 <term><command>halt</command></term>
1151
1152 <listitem>
1153 <para>Shut down and halt the system. This is mostly equivalent to
1154 <command>start halt.target --irreversible</command>, but also
1155 prints a wall message to all users. If combined with
1156 <option>--force</option>, shutdown of all running services is
1157 skipped, however all processes are killed and all file
1158 systems are unmounted or mounted read-only, immediately
1159 followed by the system halt. If <option>--force</option> is
1160 specified twice, the operation is immediately executed
1161 without terminating any processes or unmounting any file
1162 systems. This may result in data loss.</para>
1163 </listitem>
1164 </varlistentry>
1165 <varlistentry>
1166 <term><command>poweroff</command></term>
1167
1168 <listitem>
1169 <para>Shut down and power-off the system. This is mostly
1170 equivalent to <command>start poweroff.target --irreversible</command>,
1171 but also prints a wall message to all users. If combined with
1172 <option>--force</option>, shutdown of all running services is
1173 skipped, however all processes are killed and all file
1174 systems are unmounted or mounted read-only, immediately
1175 followed by the powering off. If <option>--force</option> is
1176 specified twice, the operation is immediately executed
1177 without terminating any processes or unmounting any file
1178 systems. This may result in data loss.</para>
1179 </listitem>
1180 </varlistentry>
1181 <varlistentry>
1182 <term><command>reboot</command></term>
1183
1184 <listitem>
1185 <para>Shut down and reboot the system. This is mostly
1186 equivalent to <command>start reboot.target --irreversible</command>,
1187 but also prints a wall message to all users. If combined with
1188 <option>--force</option>, shutdown of all running services is
1189 skipped, however all processes are killed and all file
1190 systems are unmounted or mounted read-only, immediately
1191 followed by the reboot. If <option>--force</option> is
1192 specified twice, the operation is immediately executed
1193 without terminating any processes or unmounting any file
1194 systems. This may result in data loss.</para>
1195 </listitem>
1196 </varlistentry>
1197 <varlistentry>
1198 <term><command>kexec</command></term>
1199
1200 <listitem>
1201 <para>Shut down and reboot the system via kexec. This is
1202 mostly equivalent to <command>start kexec.target --irreversible</command>,
1203 but also prints a wall message to all users. If combined
1204 with <option>--force</option>, shutdown of all running
1205 services is skipped, however all processes are killed and
1206 all file systems are unmounted or mounted read-only,
1207 immediately followed by the reboot.</para>
1208 </listitem>
1209 </varlistentry>
1210 <varlistentry>
1211 <term><command>exit</command></term>
1212
1213 <listitem>
1214 <para>Ask the systemd manager to quit. This is only
1215 supported for user service managers (i.e. in conjunction
1216 with the <option>--user</option> option) and will fail
1217 otherwise.</para>
1218 </listitem>
1219
1220 </varlistentry>
1221 <varlistentry>
1222 <term><command>suspend</command></term>
1223
1224 <listitem>
1225 <para>Suspend the system. This will trigger activation of
1226 the special <filename>suspend.target</filename> target.
1227 </para>
1228 </listitem>
1229 </varlistentry>
1230 <varlistentry>
1231 <term><command>hibernate</command></term>
1232
1233 <listitem>
1234 <para>Hibernate the system. This will trigger activation of
1235 the special <filename>hibernate.target</filename> target.
1236 </para>
1237 </listitem>
1238 </varlistentry>
1239 <varlistentry>
1240 <term><command>hybrid-sleep</command></term>
1241
1242 <listitem>
1243 <para>Hibernate and suspend the system. This will trigger
1244 activation of the special
1245 <filename>hybrid-sleep.target</filename> target.</para>
1246 </listitem>
1247 </varlistentry>
1248 <varlistentry>
1249 <term><command>switch-root <replaceable>ROOT</replaceable> [<replaceable>INIT</replaceable>]</command></term>
1250
1251 <listitem>
1252 <para>Switches to a different root directory and executes a
1253 new system manager process below it. This is intended for
1254 usage in initial RAM disks ("initrd"), and will transition
1255 from the initrd's system manager process (a.k.a "init"
1256 process) to the main system manager process. This call takes two
1257 arguments: the directory that is to become the new root directory, and
1258 the path to the new system manager binary below it to
1259 execute as PID 1. If the latter is omitted or the empty
1260 string, a systemd binary will automatically be searched for
1261 and used as init. If the system manager path is omitted or
1262 equal to the empty string, the state of the initrd's system
1263 manager process is passed to the main system manager, which
1264 allows later introspection of the state of the services
1265 involved in the initrd boot.</para>
1266 </listitem>
1267 </varlistentry>
1268 </variablelist>
1269 </refsect2>
4a6022f0
ZJS
1270
1271 </refsect1>
1272
1273 <refsect1>
1274 <title>Exit status</title>
1275
7b870f60 1276 <para>On success, 0 is returned, a non-zero failure
4a6022f0
ZJS
1277 code otherwise.</para>
1278 </refsect1>
1279
1280 <refsect1>
1281 <title>Environment</title>
1282
1283 <variablelist class='environment-variables'>
1284 <varlistentry>
1285 <term><varname>$SYSTEMD_PAGER</varname></term>
1286
1287 <listitem>
1288 <para>Pager to use when <option>--no-pager</option> is not
1289 given; overrides <varname>$PAGER</varname>. Setting this to
1290 an empty string or the value <literal>cat</literal> is
1291 equivalent to passing
1292 <option>--no-pager</option>.</para>
1293 </listitem>
1294 </varlistentry>
1295 </variablelist>
1296 </refsect1>
1297
1298 <refsect1>
1299 <title>See Also</title>
1300 <para>
1301 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1302 <citerefentry><refentrytitle>systemadm</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1303 <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1304 <citerefentry><refentrytitle>loginctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1305 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3fde5f30 1306 <citerefentry><refentrytitle>systemd.resource-management</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
4a6022f0
ZJS
1307 <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
1308 <citerefentry><refentrytitle>wall</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1309 <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1310 </para>
1311 </refsect1>
7874bcd6
LP
1312
1313</refentry>