systemd reference
What is systemd?
systemd
is an init and system manager that is used on most Linux distros. Once the Linux kernel has booted, systemd
runs as PID 1 and initializes user-space processes.
For example, log in as root
, run ps -ax | head
, and you should see PID 1 is /sbin/init
:
Run ls -l /sbin/init
and you should see that it’s a symlink to /lib/systemd/systemd
:
systemd manages your processes as “units”
systemd
operates on “units”, which are processes / resources that it knows how to manage. It classifies units into several types such as a service, socket, device, timer, and more.
Each unit is configured in a configuration file that has its type suffix (e.g., nginx.service
, ssh.socket
, apt-daily.timer
, etc).
Where are the units?
On Ubuntu 20.04 (any many other distros), the unit files can be found in lib/systemd/system
. For example, running:
prints something like:
What does a unit configuration file look like?
Here’s the configuration file for the Nginx service:
Manage units in current session
Most of the time, you can leave out the unit suffix when running systemctl
commands. So, instead of:
You can use:
Start unit
Stop unit
Restart unit
Reload unit
Only works if the resource supports reloading.
Monitor units
Check status of unit
Example output:
Check if unit is active
Check if unit is enabled
Check if a unit is in a failed state
Filter units by state
Filter units by type
View unit file as known to the current running unit process
List unit dependencies
List dependences that must start before unit
List dependences that must start before unit
Show properties of unit
Example output for systemctl show nginx | head
:
Manage units on boot
As well as managing units in the current session, you can instruct systemd to start a unit at boot by enabling the unit.
Enable unit
This will create a symlink from the system’s copy of the unit file (usually in lib/systemd/system
) to the location on disk where systemd
searches for autostart files (usually /etc/systemd/system/some_target.target.wants
).
Note: enabling a unit doesn’t start it in the current session. You’ll have to use the start
command or reboot the system.
Disable unit
This will remove the symlink created after the previous enable
command.
Mask unit (make it impossible to start)
This will symlink the unit file to /dev/null
, making it impossible to start them either manually (via systemctl start
or automatically (via scripts or as dependencies to other units). Use the --now
option to also stop the units now.
You can check masked units with:
Unmask unit (re-enable for start)
Edit unit files
Merge custom snippet config with full unit file
This will create a file at /etc/systemd/system/<unit.d>/override.conf
Edit the full unit file
This will load the existing unit file into the editor. When you save and exit, the file will be written to /etc/systemd/system
, which will take precedence over the system’s unit definition (usually found in /lib/systemd/system
).
Other notes
systemd
keeps track of processes using Linux control groups (cgroups).systemd
manages unit dependencies.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment