Nginx 开机自启
2018-10-23 本文已影响0人
fbckf
上一篇 Nginx 安装
添加 nginx 为系统服务,设置开机自启
- 在 /lib/systemd/system 目录添加 nginx.service 文件
vim /lib/systemd/system/nginx.service
- 写入以下内容,保存退出
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
- 设置开机自启
# 设置开机启动
systemctl enable nginx
- 其它命令
# 启动 nginx
systemctl start nginx
# 停止
systemctl stop nginx
# 加载配置文件
systemctl reload nginx
下一篇 暂无Nginx 配置文件