Nginx server adds Systemd custom service process analysis

Nginx server adds Systemd custom service process analysis

1. Take nginx as an example

Nginx installed using the yum command

Systemd service files end with .service. For example, if you want to set up nginx for startup, if you use the yum install command to install it, the yum command will automatically create the nginx.service file. Just use the command:

systemcel enable nginx.service //Start automatically at boot

Compile and install using source code

1. Manually create the nginx.service service file. and put it into /lib/systemd/system folder.

The content of nginx.service is as follows:

[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/data/nginx/sbin/nginx
ExecReload=/data/nginx/sbin/nginx -s reload
ExecStop=/data/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

PS: Note that the above ExecStart/ExecReload/ExecStop must be based on your own

Corresponding key description

Description:Describe the service
After: Describe the service category
[Service] Setting of service operation parameters
Type=forking means background operation
ExecStart is the specific running command of the service
ExecReload is the restart command
ExecStop is the stop command
PrivateTmp=True means to allocate independent temporary space to the service. Note: All start, restart, and stop commands of [Service] require absolute paths.
[Install] Related settings for service installation under the running level can be set to multi-user, that is, the system running level is 3

Save and exit.

2. Set the startup

systemctl enable nginx.service

Other service commands

systemctl start nginx.service (Start nginx service)
systemctl stop nginx.service (Stop nginx service)
systemctl enable nginx.service (set to start automatically at boot)
systemctl disable nginx.service (stop booting automatically)
systemctl status nginx.service (check the current status of the service)
systemctl restart nginx.service (Restart the service)
systemctl list-units --type=service (view all started services)

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to deploy golang project using systemd
  • How to add custom system services to CentOS7 systemd
  • Centos7 startup process and Nginx startup configuration in Systemd
  • In-depth analysis of systemd in centos7
  • How to add custom system services to systemd and set custom startup
  • Docker deployment nginx implementation process graphic and text detailed explanation
  • Nginx access log and error log parameter description
  • Nginx 502 Bad Gateway Error Causes and Solutions

<<:  Summary of Mysql exists usage

>>:  Compatibility with the inline-block property

Recommend

Detailed explanation of jQuery method attributes

Table of contents 1. Introduction to jQuery 2. jQ...

HTML+CSS to achieve text folding special effects example

This article mainly introduces the example of rea...

Using css-loader to implement css module in vue-cli

【Foreword】 Both Vue and React's CSS modular s...

Detailed installation steps for MySQL 8.0.11

This article shares the installation steps of MyS...

How to view the database installation path in MySQL

We can view the installation path of mysql throug...

mySQL server connection, disconnection and cmd operation

Use the mysql command to connect to the MySQL ser...

How to optimize MySQL performance through MySQL slow query

As the number of visits increases, the pressure o...

HTML uses the title attribute to display text when the mouse hovers

Copy code The code is as follows: <a href=# ti...

How to modify the time in centos virtual machine

The one above shows the system time, and the one ...

How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Have you ever had the need to compute a very larg...

CentOS8 - bash: garbled characters and solutions

This situation usually occurs because the Chinese...

Summary of learning Docker commands in one article

Table of contents Introduction Mirror repository ...

Summary of common tool functions necessary for front-end development

1. Time formatting and other methods It is recomm...

VMware Workstation Pro 16 License Key with Usage Tutorial

VMware Workstation is a powerful desktop virtual ...