编译安装nginx,并使用systemd管理nginx
Posted pluto2charon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装nginx,并使用systemd管理nginx相关的知识,希望对你有一定的参考价值。
#tar zxvf nginx-1.8.1.tar.gz
#cd nginx-1.8.1/
#make && make install
#cat /etc/systemd/system/nginx.service
[Unit]
Description=nginx server daemon
Documentation=man:nginx(8)
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx1.8.1/sbin/nginx
ExecReload=/usr/local/nginx1.8.1/sbin/nginx -s reload
ExecStop=/usr/local/nginx1.8.1/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
#systemctl daemon-reload
#systemctl start nginx.service
#systemctl enable nginx.service
#systemctl status nginx.service
以上是关于编译安装nginx,并使用systemd管理nginx的主要内容,如果未能解决你的问题,请参考以下文章