Introduction
SystemD is a system and service manager for Linux that provides an efficient way to manage services and daemons. SystemD can be used to start, stop, and manage services, as well as monitor their status.
By using SystemD to run your services in the background, you can ensure that they continue to run even after you log out of your system.
Run a Service in the Background with SystemD
Create a SystemD Service
To create a SystemD service, you will need to create a new service file in the /etc/systemd/system/ directory.
For example, to create a service for Apache, you can create the file /etc/systemd/system/httpd.service with the following contents:
[Unit]Description=Apache Web Server
[Service]Type=simpleExecStart=/usr/sbin/httpd -k startExecStop=/usr/sbin/httpd -k stop
[Install]WantedBy=multi-user.targetStart and Stop the Service
To start the Apache service, use the following command:
sudo systemctl start httpdTo stop the Apache service, use the following command:
sudo systemctl stop httpdMonitor Service Status
You can monitor the status of the Apache service by using the following command:
systemctl status httpdThis command will show you whether the service is running or not, as well as other information about the service.
Enable and Disable Services
You can also enable and disable services so that they start automatically at boot time. To enable the Apache service, use the following command:
sudo systemctl enable httpdTo disable the Apache service, use the following command:
sudo systemctl disable httpdDetailed Explanation
[Unit]
This section specifies metadata about the service, such as its description, dependencies, and related services.
Description=Apache Web ServerThis line gives a description of the service, which can be any text you like. In this case, it’s “Apache Web Server.”
[Service]
This section specifies the actions that SystemD should take to start and stop the service.
Type=simpleThis line specifies the type of service. “simple” is a common type for most services.
ExecStart=/usr/sbin/httpd -k startThis line specifies the command that SystemD should run to start the service. In this case, it’s /usr/sbin/httpd with the argument -k start.
ExecStop=/usr/sbin/httpd -k stopThis line specifies the command that SystemD should run to stop the service. In this case, it’s /usr/sbin/httpd with the argument -k stop.
[Install]
This section specifies how the service should be installed and integrated into the system.
WantedBy=multi-user.targetThis line specifies the target that the service should be integrated with. The target multi-user.target means that the service will start automatically at boot time, after the basic system services have started.
So, that’s an overview of what each line in a SystemD service file means. By understanding each line, you can create and customize your own SystemD services to run your services in the background.
Conclusion
SystemD provides an easy and efficient way to run services in the background on Linux. By following the steps outlined in this guide, you can create a SystemD service, start and stop it, monitor its status, and enable and disable it.
Start using SystemD to manage your services and keep them running smoothly in the background.