
register nginx systemctl service
Register nginx systemctl service
Easy to manage and use ,,,
vi /lib/systemd/system/nginx.service
Add the following code
1
2
3
4
5
6
7
8
9
10
11
12
13
[Unit]
Description = nginx
After = network.target
[Service]
Type = forking
ExecStart = /usr/local/nginx/sbin/nginx
ExecReload =/us/local/nginx/sbin/nginx -s reload
ExecStop =/usr/local/nginx/sbin/nginx -s quit
PrivateTmp =true
[Install]
WantedBy = multi-user.target
Common commands
1
2
3
4
5
systemctl start nginx.service //start nginx service
systemctl stop nginx.service //close nginx service
systemctl restart nginx.service // restart nginx service
systemctl reload snginx.service //reload nginx configuration file
systemctl status nginx.service // View nginx service status
💘 相关文章
- Nginx – Unit nginx.service is masked的解决方法
- 注册nginx的systemctl服务
- nginx禁止执行php脚本
- nginx "ssl_stapling" ignored, issuer certificate not found for certificate解决方法
- Nginx使用Memcached缓存加速wordpress,秒开网站
- nginx配置时HTTPS出现"nginx: [warn] "ssl_stapling" ignored"的解决方法
- 一款可视化适合小白的cdn构建系统
- nginx 使用gzip和Brotli压缩对比测试
- nginx: [warn] "ssl_stapling" ignored, not supported告警
- nginx: [emerg] Solution to unknown directive "set_real_ip_from"