ubuntu添加nginx(openresty)service服务和开机启动

栏目: 服务器 · Nginx · 发布时间: 6年前

内容简介:假设启动脚本为:/usr/local/ngx_openresty/nginx/sbin/nginx -c /etc/nginx/nginx.conf第一种方式:传统的/etc/init.d/下面的脚本新建脚本文件start.sh

假设启动脚本为:/usr/local/ngx_openresty/nginx/sbin/nginx -c /etc/nginx/nginx.conf

第一种方式:传统的/etc/init.d/下面的脚本

新建脚本文件start.sh

#!/bin/bash
/usr/local/ngx_openresty/nginx/sbin/nginx -c /etc/nginx/nginx.conf
exit 0

设置权限

sudo chmod 755 start.sh

链接到启动目录下

sudo ln pwd /start.sh -s /etc/init.d/

添加到启动项目

cd /etc/init.d/

99为优先级,越高越晚执行。。。

sudo update-rc.d start.sh defaults 99

移除开机启动项

sudo update-rc.d -f start.sh remove

第二种方式:systemd

[Unit]
Description=The NGINX HTTP and reverse proxy server

[Service]
Type=forking
ExecStartPre=/usr/local/ngx_openresty/nginx/sbin/nginx -c /etc/nginx/nginx.conf -t
ExecStart=//usr/local/ngx_openresty/nginx/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

重启配置列表

systemctl daemon-reload

启动命令为

service nginx start

systemctl start nginx

systemctl start nginx.service

这个是列举所有已经存在配置文件对应的服务状态列表

systemctl list-unit-files | grep nginx

列举出具有加载状态的服务列表

systemctl --all | grep nginx

常用命令:

systemctl start nginx

systemctl start nginx.service

systemctl stop nginx

systemctl reload nginx

systemctl restart nginx

systemctl status nginx

添加为开机启动:

systemctl enable nginx.service

systemctl enable nginx

移除开机启动:

systemctl disable nginx.service

systemctl disable nginx


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

精通CSS(第2版)

精通CSS(第2版)

[英] Andy Budd、[英] Simon Collison、[英] Cameron Moll / 陈剑瓯 / 人民邮电出版社 / 2010-5 / 49.00元

本书汇集了最有用的CSS技术,介绍了CSS的基本概念和最佳实践,结合实例探讨了图像、链接和列表的操纵,还有表单设计、数据表格设计、纯CSS布局等核心CSS技术。此外,书中着眼于创建跨浏览器的技术,讨论了bug及其捕捉和修复技术,还将所有技术组合成两个精彩的实例,讲述这些技术的工作原理和实际用法。 本书适合具有HTML和CSS基础知识的读者阅读。一起来看看 《精通CSS(第2版)》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具