The systemd service and target are the core of Linux system management. The service uses the .service file management process, and uses the systemctl command to control start and stop and enable disables, such as systemctl start sshd; the target represents the system running status, such as multi-user.target or graphic.target. The systemctl set-default and isolate switch. The default target can be set. The service file includes three parts: [Unit], [Service], and [Install]. WantedBy specifies the target dependency. Customized services need to create a .service file and execute systemctl daemon-reload to make the configuration take effect.
Linux systemd
is the init system and service manager used by most modern Linux distributions. It controls how services start, stop, and behave during system boot and runtime. Understanding services and targets in systemd
is essential for managing system behavior effectively.

What Are Systemd Services?
A service in systemd
represents a unit that manages a specific process or daemon—like a web server ( httpd
), SSH server ( sshd
), or database ( mariadb
). Services define how and when a program should run.
Service files (ending in .service
) are usually located in:

-
/usr/lib/systemd/system/
– for default system-provided services -
/etc/systemd/system/
– for user-defined or overridden services
Common Service Management Commands
You can control services using the systemctl
command:
# Start a service immediately sudo systemctl start sshd.service # Stop a running service sudo systemctl stop sshd.service # Enable a service to start at boot sudo systemctl enable sshd.service # Disable a service from starting at boot sudo systemctl disable sshd.service # Check the status of a service systemctl status sshd.service # Restart or reload a service sudo systemctl restart sshd.service sudo systemctl reload sshd.service # if supported
Note: The
.service
sffix is optional. You can just typesshd
instead ofsshd.service
.
Anatomy of a Service File
A typical .service
file looks like this:
[Unit] Description=OpenSSH Server After=network.target [Service] Type=notify ExecStart=/usr/sbin/sshd -D $SSHD_OPTS ExecReload=/bin/kill -HUP $MAINPID Restart=on-failure [Install] WantedBy=multi-user.target
Key sections:
-
[Unit]
: Defines metadata and dependencies (eg, what must start before this). -
[Service]
: Specifies how the service should run (start command, restart policy, etc.). -
[Install]
: Controls how the service is enabled/disabled (used withenable
/disable
).
What Are Systemd Targets?
Targets in systemd
are like runlevels in the old SysV init system, but more flexible. They represent a state or mode the system should be in (eg, multi-user, graphic, rescue).
Common targets include:
Target | Description |
---|---|
poweroff.target | Shuts down the system |
rescue.target | Single-user mode with minimum services |
multi-user.target | Multi-user text mode (no GUI) |
graphical.target | Multi-user with GUI (desktop environment) |
reboot.target | Reboots the system |
Managing and Switching Targets
To see the current target:
systemctl get-default
To change the default boot target:
# Set system to boot into text mode by default sudo systemctl set-default multi-user.target # Set system to boot into GUI by default sudo systemctl set-default graphic.target
To switch to a target immediately (without rebooting):
# Switch to single-user/rescue mode sudo systemctl isolate rescue.target # Switch to multi-user mode sudo systemctl isolate multi-user.target
isolate
stops services not part of the target and starts those that are—similar to switching runlevels.
Understanding Target Dependencies
Targets use .target
files to group other units. For example, graphical.target
typically pulls in multi-user.target
and display manager services.
You can see what's included in a target:
systemctl list-dependencies graphic.target
And check which target a service belongs to via the [Install]
section ( WantedBy=
).
Practical Example: Creating a Custom Service
Let's say you want a script to run at boot.
Create a script:
sudo nano /opt/myscript.sh
#!/bin/bash echo "Custom service running at $(date)" >> /var/log/myscript.log
Make it executeable:
sudo chmod x /opt/myscript.sh
Create a service file:
sudo nano /etc/systemd/system/myscript.service
[Unit] Description=My Custom Script After=network.target [Service] Type=oneshot ExecStart=/opt/myscript.sh RemainAfterExit=yes [Install] WantedBy=multi-user.target
Reload systemd and enable the service:
sudo systemctl daemon-reexec sudo systemctl enable myscript.service
Now it will run at every boot.
Key Takeaways
- Services manage daemons and processes; use
systemctl
to control them. - Targets define system states, replacing old runlevels.
- Use
WantedBy=
in service files to tie services to specific targets. - Custom services can be created easily in
/etc/systemd/system/
. - Always run
systemctl daemon-reload
after creating or editing service files.
Basically, systemd makes service and boot management more consistent and dependency-aware than older init systems. Once you understand services and targets, you're well on your way to mastering Linux system administration.
The above is the detailed content of Understanding Linux Systemd Services and Targets. For more information, please follow other related articles on the PHP Chinese website!
- Services manage daemons and processes; use

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

LXD is described as the next-generation container and virtual machine manager that offers an immersive for Linux systems running inside containers or as virtual machines. It provides images for an inordinate number of Linux distributions with support

Clear Linux OS is the ideal operating system for people – ahem system admins – who want to have a minimal, secure, and reliable Linux distribution. It is optimized for the Intel architecture, which means that running Clear Linux OS on AMD sys

The key steps for creating a self-signed SSL certificate are as follows: 1. Generate the private key, use the command opensslgenrsa-outselfsigned.key2048 to generate a 2048-bit RSA private key file, optional parameter -aes256 to achieve password protection; 2. Create a certificate request (CSR), run opensslreq-new-keyselfsigned.key-outselfsigned.csr and fill in the relevant information, especially the "CommonName" field; 3. Generate the certificate by self-signed, and use opensslx509-req-days365-inselfsigned.csr-signk

Decompress the .zip file on Windows, you can right-click to select "Extract All", while the .tar.gz file needs to use tools such as 7-Zip or WinRAR; on macOS and Linux, the .zip file can be double-clicked or unzip commanded, and the .tar.gz file can be decompressed by tar command or double-clicked directly. The specific steps are: 1. Windows processing.zip file: right-click → "Extract All"; 2. Windows processing.tar.gz file: Install third-party tools → right-click to decompress; 3. macOS/Linux processing.zip file: double-click or run unzipfilename.zip; 4. macOS/Linux processing.tar

Firefox browser is the default browser for most modern Linux distributions such as Ubuntu, Mint, and Fedora. Initially, its performance might be impressive, however, with the passage of time, you might notice that your browser is not as fast and resp

When encountering DNS problems, first check the /etc/resolv.conf file to see if the correct nameserver is configured; secondly, you can manually add public DNS such as 8.8.8.8 for testing; then use nslookup and dig commands to verify whether DNS resolution is normal. If these tools are not installed, you can first install the dnsutils or bind-utils package; then check the systemd-resolved service status and configuration file /etc/systemd/resolved.conf, and set DNS and FallbackDNS as needed and restart the service; finally check the network interface status and firewall rules, confirm that port 53 is not

As a system administrator, you may find yourself (today or in the future) working in an environment where Windows and Linux coexist. It is no secret that some big companies prefer (or have to) run some of their production services in Windows boxes an

If you find that the server is running slowly or the memory usage is too high, you should check the cause before operating. First, you need to check the system resource usage, use top, htop, free-h, iostat, ss-antp and other commands to check CPU, memory, disk I/O and network connections; secondly, analyze specific process problems, and track the behavior of high-occupancy processes through tools such as ps, jstack, strace; then check logs and monitoring data, view OOM records, exception requests, slow queries and other clues; finally, targeted processing is carried out based on common reasons such as memory leaks, connection pool exhaustion, cache failure storms, and timing task conflicts, optimize code logic, set up a timeout retry mechanism, add current limit fuses, and regularly pressure measurement and evaluation resources.
