Linux Centos7 设置Nginx开机自启动
Posted 伍声2016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Centos7 设置Nginx开机自启动相关的知识,希望对你有一定的参考价值。
新建vi /lib/systemd/system/nginx.service在nginx.service文件
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
启动nginx服务
systemctl start nginx.service
设置开机自启动nginx服务
systemctl enable nginx.service
停止开机自启动nginx服务
systemctl disable nginx.service
查看当前服务状态
systemctl status nginx.service
重新启动服务
systemctl restart nginx.service
查看所有已启动的服务
systemctl list-units --type=service
以上是关于Linux Centos7 设置Nginx开机自启动的主要内容,如果未能解决你的问题,请参考以下文章