#!/bin/bash#nginxStartupscriptfortheNginxHTTPServer#thisscriptcreateitbyjackbillowat2007.10.15.#itisv.0.0.2version.#ifyoufindanyerrorsonthisscripts,pleasecontactjackbillow.#andsendmailtojackbillowatgmaildotcom.#chkconfig:-8515#description:Nginxisahigh-perfo..
分类:
其他好文 时间:
2015-05-17 02:09:29
阅读次数:
142
#!/bin/bash#chkconfig:-3021#description:httpservice.#SourceFunctionLibrary./etc/init.d/functions#NginxSettingsNGINX_SBIN="/usr/local/nginx/sbin/nginx"NGINX_CONF="/usr/local/nginx/conf/nginx.conf"NGINX_PID="/usr/local/nginx/logs/nginx.pid"RETVAL=0prog="Nginx..
分类:
其他好文 时间:
2015-05-12 01:48:23
阅读次数:
147
今天讲到shell编程,我给大家讲解手工开发Nginx启动脚本时,写的脚本,调试发现有问题,
挺有意思的一个问题点,有2个地方有影响启动和停止的问题,有兴趣的可以研究下,
一周后公布结果!
[root@oldboy03]#catnginxd-good
#!/bin/sh
RETVAL=0
path="/application/nginx"
./etc..
分类:
其他好文 时间:
2015-04-10 07:12:19
阅读次数:
126
第一步先运行命令关闭nginxsudo kill `cat /usr/local/nginx/logs/nginx.pid`第二步vi /etc/init.d/nginx输入以下内容#!/bin/sh## nginx - this script starts and stops the nginx ...
分类:
其他好文 时间:
2015-01-04 12:09:24
阅读次数:
229
1. 建立脚本文件nginxd[root@could]# vi /etc/init.d/nginxd插入以下内容#!/bin/bash## chkconfig: - 85 15# description: Nginx is a World Wide Web server.# processname:...
分类:
其他好文 时间:
2014-12-30 15:12:38
阅读次数:
187
#!/bin/bashNGINX=/usr/local/nginx/sbin/nginxPID=/usr/local/nginx/logs/nginx.pid##funSTART(){pstree-p|grepnginx>/dev/null2>&1if[-f$PID]&&[$?-eq0]thenecho"Warnning:nginxalreadyrunning"elseif[-f$PID];thenrm-rf$PIDfi$NGINX##stdinOKif[$?-eq0];t..
分类:
其他好文 时间:
2014-10-09 15:31:48
阅读次数:
179
安装包介绍:
根据用户的需求,安装指定的软件。nginx默认安装在/usr/local/nginx,启动脚本在/usr/local/nginx/conf/nginx;php安装在/usr/local/php,启动脚本为/usr/local/php/sbin/php-fpm;mysql安装在/usr/local/mysql,启动脚本为/etc/init.d/mysqld。
将各个...
分类:
其他好文 时间:
2014-09-30 11:45:42
阅读次数:
308