nginx 在CentOS 7.3 下编译安装的,使用 systemctl start nginx 命令启动 nginx,启动成功后,可以正常访问,但是没一会就不能访问,看后台发现 nginx 进程已经没了,看错误日志,也没有错误。 使用 nginx 命令启动 nginx,就没有这个问题,无语了。
/usr/lib/systemd/system/nginx.service
文件是手动创建的,内容如下:
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/usr/local/nginx/run/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /etc/nginx/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reopen
ExecStop=/usr/local/nginx/sbin/nginx -s stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
无语了,把PID文件指向