systemctl 设置自定义nginx服务管理

aolishuai 2019-12-24

1、建立服务文件

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=/usr/local/nginx/logs/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
ExecQuit=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

2、加入开机启动

systemctl enable nginx.service

3、查看

systemctl list-units --type=service

nginx.service loaded active running The nginx HTTP and reverse proxy server

相关推荐

lwplvx / 0评论 2020-11-22
岁月如歌 / 0评论 2020-07-21