
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的systemctl服务
- Nginx – Unit nginx.service is masked的解决方法
- 比systemctl简单的基于C语言的守候进程工具-Joker
- directadmin的安装折腾及更改directadmin为nginx记录
- nginx 使用gzip和Brotli压缩对比测试
- nginx nginx "--with-ipv6" option is deprecated 问题
- nginx反向代理配置演示,包括静态资源处理,百分百成功
- nginx: [emerg] Solution to unknown directive "set_real_ip_from"
- 基于JAVA非常强大的Nginx配置文件生成面板
- 使用301实现域名跳转到www包括https的3种方法