起步

配置 systemctl 管理 nginx 与解决 systemctl start nginx 卡住问题。

systemctl 管理 nginx

命令:vim /usr/lib/systemd/system/nginx.service,写入以下内容:

[Unit]
Description=The NGINX HTTP and reverse proxy server
After=syslog.target network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/sbin/nginx -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

根据实际情况修改上述中 nginx 的绝对路径。

systemctl start nginx 卡住问题

确保 /usr/lib/systemd/system/nginx.service 文件中:

PIDFile=/run/nginx.pid

修改 nginx.conf:

pid        /run/nginx.pid;

现在 systemctl start nginx 就不会被卡主了。



本文由 Guan 创作,采用 知识共享署名 3.0,可自由转载、引用,但需署名作者且注明文章出处。

还不快抢沙发

添加新评论