Keep Your Services Running in the Background with SystemD

Published on

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:

/etc/systemd/system/httpd.service
[Unit]
Description=Apache Web Server

[Service]
Type=simple
ExecStart=/usr/sbin/httpd -k start
ExecStop=/usr/sbin/httpd -k stop

[Install]
WantedBy=multi-user.target

Start and Stop the Service

To start the Apache service, use the following command:

sudo systemctl start httpd

To stop the Apache service, use the following command:

sudo systemctl stop httpd

Monitor Service Status

You can monitor the status of the Apache service by using the following command:

systemctl status httpd

This 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 httpd

To disable the Apache service, use the following command:

sudo systemctl disable httpd

Detailed Explanation

[Unit]

This section specifies metadata about the service, such as its description, dependencies, and related services.

Description=Apache Web Server

This 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=simple

This line specifies the type of service. "simple" is a common type for most services.

ExecStart=/usr/sbin/httpd -k start

This 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 stop

This 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.target

This 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.

Updates straight in your inbox!

A periodic update about my life, recent blog posts, TIL (Today I learned) related stuff, things I am building and more!

Share with others

Liked it?

Tags

Views

You may also like

  • linux

    Effortlessly Manage Torrent Downloads with Headless qBittorrent on Linux

    Learn how to install qBittorrent on a Linux server without a GUI and run it in the background with SystemD for a seamless torrenting experience.

    2 min read
  • linux

    Running a Service in the Background with SystemV in Linux: A Comprehensive Guide

    Take control of your background services with SystemV in Linux. Learn how to write a SystemV init script, install and start the service, and control its behavior with this comprehensive guide.

    4 min read
  • linux

    Init Systems Unveiled — Understanding the Differences between SystemD and SystemV

    Get a comprehensive understanding of SystemD and SystemV init systems in Linux. Explore the similarities and differences between these two init systems, with explanations to help you make an informed decision.

    3 min read