2014-02-25 02:06:23 +00:00
|
|
|
# systemctl
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Control the systemd system and service manager.
|
2020-09-01 15:31:47 +01:00
|
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html>.
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2021-10-09 03:00:29 +01:00
|
|
|
- Show all running services:
|
|
|
|
|
|
|
|
`systemctl status`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- List failed units:
|
2014-02-25 02:06:23 +00:00
|
|
|
|
|
|
|
`systemctl --failed`
|
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
- Start/Stop/Restart/Reload/Show the status a service:
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
`systemctl {{start|stop|restart|reload|status}} {{unit}}`
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Enable/Disable a unit to be started on bootup:
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2021-02-19 10:13:45 +00:00
|
|
|
`systemctl {{enable|disable}} {{unit}}`
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
- Reload systemd, scan for new or changed units:
|
|
|
|
|
|
|
|
`systemctl daemon-reload`
|
2016-04-09 23:36:11 +01:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
- Check if a unit is active/enabled/failed:
|
2016-04-09 23:36:11 +01:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
`systemctl {{is-active|is-enabled|is-failed}} {{unit}}`
|
2014-02-25 02:06:23 +00:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
- List all service/socket/automount units filtering by running/failed state:
|
|
|
|
|
|
|
|
`systemctl list-units --type={{service|socket|automount}} --state={{failed|running}}`
|
2020-09-01 15:31:47 +01:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
- Show the contents & absolute path of a unit file:
|
2020-09-01 15:31:47 +01:00
|
|
|
|
2024-05-10 09:04:49 +01:00
|
|
|
`systemctl cat {{unit}}`
|