#!/bin/bashnginx=/usr/local/nginx/sbin/nginx #把nginx的启动定义成变量 方便被调用check(){ #check 检查 测试nginx是否启动 输出nginx的启动或关闭 netstat -ntlp |grep nginx if [ $? -eq 0 ...
分类:
其他好文 时间:
2019-12-07 10:21:38
阅读次数:
94
vi /lib/systemd/system/nginx.service systemctl start nginx systemctl stop nginx systemctl restart nginx [Unit]:服务的说明Description:描述服务After:描述服务类别[Servi ...
分类:
其他好文 时间:
2019-02-14 13:12:12
阅读次数:
213
```shell
#!/bin/bash
#
# nginx Start nginx # chkconfig: - 85 15
# description: The nginx is an efficient web server
# processname: nginx
# config: /us... ...
分类:
其他好文 时间:
2019-01-18 17:27:37
阅读次数:
195
OS:CentOS/Redhat 系列 并在 Centos 6.7 和 Centos 7.2 上测试正常 ...
分类:
系统相关 时间:
2018-07-10 17:53:51
阅读次数:
251
#!/bin/bash #author Template #Time 2018-06-30 22:07 # chkconfig 2345 40 98 # description nginx start/stop script prefix=/usr/local/nginx Nginx_Bin=${p... ...
分类:
其他好文 时间:
2018-06-30 23:03:18
阅读次数:
213
stop和start之间最好有停留时间,因为防止nginx没有完全关闭 ...
分类:
其他好文 时间:
2018-05-27 14:51:59
阅读次数:
173
注意你的nginx版本和存放路径,做相应的改动,亲测在Centos6.7可用
分类:
其他好文 时间:
2018-05-25 11:09:00
阅读次数:
105
Nginx 启动脚本 1、vim /etc/init.d/nginx #!/bin/bash # chkconfig: - 30 21 # description: http service. # Source Function Library . /etc/init.d/functions # N ...
分类:
其他好文 时间:
2018-01-31 20:24:28
阅读次数:
159