我的 nginx 单元文件如下,
[root@arif ~]# cat /usr/lib/systemd/system/nginx.service
[Unit]
Description=The nginx HTTP and reverse proxy server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/run/nginx.pid
# Nginx will fail to start if /run/nginx.pid already exists but has the wrong
# SELinux context. This might happen when running `nginx -t` from the cmdline.
# https://bugzilla.redhat.com/show_bug.cgi?id=1268621
ExecStartPre=/usr/bin/rm -f /run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
KillSignal=SIGQUIT
TimeoutStopSec=5
KillMode=process
PrivateTmp=true
[Install]
WantedBy=multi-user.target
这里,在该[Service]
部分中,的值Type
等于forking
从这里开始的意思,
以 ExecStart 启动的进程会生成一个子进程,该子进程将成为服务的主进程。启动完成后父进程退出。
我的问题是,
- 为什么服务会这样做?
- 这样做有什么好处?
- 出了什么问题
Type=simple
或其他类似的选择?