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 quic的环境
- how to do config nginx allow's cloudflare ip's
- nginx: [warn] "ssl_stapling" ignored, not supported告警
- nginx "ssl_stapling" ignored, issuer certificate not found for certificate解决方法
- nginx 开启http3 QUIC和配置Brotli压缩和反向代理的详细教程
- 解决nginx反向代理验证码不显示的方法
- nginx: [emerg] Solution to unknown directive "set_real_ip_from"
- 使用301实现域名跳转到www包括https的3种方法