免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3714 | 回复: 3
打印 上一主题 下一主题

[Web] redhat或centos系统下nginx自动启动脚本(第二版)--原创 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-30 22:54 |只看该作者 |倒序浏览
这一段时间给某地区的一个门户网站,部署了一个项目,为了利于他们以后的管理,以前写了第一个版,有写bug,这次重新完善了一下,应该比以前好用多了。 nginx的启动关闭,能貌似是系统自带的服务 ,写出来和大家分享一下。
注意使用此脚本前,需要把nginx.conf里面pid修改到:/var/run/nginx.pid.

#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# this script create it by jackbillow at 2007.10.15.
# it is v.0.0.2 version.
# if you find any errors on this scripts,please contact jackbillow.
# and send mail to jackbillow at gmail dot com.
#
# chkconfig: - 85 15
# description: Nginx is a high-performance web and proxy server.
#              It has a lot of features, but it's not for everyone.
# processname: nginx
# pidfile: /var/run/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf

nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/var/run/nginx.pid

RETVAL=0
prog="nginx"

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -x $nginxd ] || exit 0


# Start nginx daemons functions.
start() {

if [ -e $nginx_pid ];then
   echo "nginx already running...."
   exit 1
fi

   echo -n $"Starting $prog: "
   daemon $nginxd -c ${nginx_config}
   RETVAL=$?
   echo
   [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
   return $RETVAL

}


# Stop nginx daemons functions.
stop() {
        echo -n $"Stopping $prog: "
        killproc $nginxd
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}


# reload nginx service functions.
reload() {

    echo -n $"Reloading $prog: "
    #kill -HUP `cat ${nginx_pid}`
    killproc $nginxd -HUP
    RETVAL=$?
    echo

}

# See how we were called.
case "$1" in
start)
        start
        ;;

stop)
        stop
        ;;

reload)
        reload
        ;;

restart)
        stop
        start
        ;;

status)
        status $prog
        RETVAL=$?
        ;;
*)
        echo $"Usage: $prog {start|stop|restart|reload|status|help}"
        exit 1
esac

exit $RETVAL


vi /etc/init.d/nginx
输入上面的脚本的内容。
chmod a+x /etc/init.d/nginx
[root@jackbillow ~]# /etc/init.d/nginx stop
Stopping nginx:                                            [ OK ]
[root@jackbillow ~]# /etc/init.d/nginx start
Starting nginx:                                            [ OK ]
[root@jackbillow ~]# /etc/init.d/nginx restart
Stopping nginx:                                            [ OK ]
Starting nginx:                                            [ OK ]
[root@jackbillow ~]# /etc/init.d/nginx reload
Reloading nginx:                                           [ OK ]
[root@jackbillow ~]# /etc/init.d/nginx status
nginx (pid 22625 22624 22623 22622 22621 22620 22619 22618 22617 22616 22599) is running...
[root@jackbillow ~]#

论坛徽章:
0
2 [报告]
发表于 2008-08-31 23:28 |只看该作者
redhat官方的nginx启动脚本
  1. #!/bin/sh
  2. #
  3. # nginx - this script starts and stops the nginx daemin
  4. #
  5. # chkconfig:   - 85 15
  6. # description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
  7. #               proxy and IMAP/POP3 proxy server
  8. # processname: nginx
  9. # config:      /etc/nginx/nginx.conf
  10. # config:      /etc/sysconfig/nginx
  11. # pidfile:     /var/run/nginx.pid

  12. # Source function library.
  13. . /etc/rc.d/init.d/functions

  14. # Source networking configuration.
  15. . /etc/sysconfig/network

  16. # Check that networking is up.
  17. [ "$NETWORKING" = "no" ] && exit 0

  18. nginx="/usr/sbin/nginx"
  19. prog=$(basename $nginx)

  20. NGINX_CONF_FILE="/etc/nginx/nginx.conf"

  21. [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx

  22. lockfile=/var/lock/subsys/nginx

  23. start() {
  24.     [ -x $nginx ] || exit 5
  25.     [ -f $NGINX_CONF_FILE ] || exit 6
  26.     echo -n $"Starting $prog: "
  27.     daemon $nginx -c $NGINX_CONF_FILE
  28.     retval=$?
  29.     echo
  30.     [ $retval -eq 0 ] && touch $lockfile
  31.     return $retval
  32. }

  33. stop() {
  34.     echo -n $"Stopping $prog: "
  35.     killproc $prog -QUIT
  36.     retval=$?
  37.     echo
  38.     [ $retval -eq 0 ] && rm -f $lockfile
  39.     return $retval
  40. }

  41. restart() {
  42.     configtest || return $?
  43.     stop
  44.     start
  45. }

  46. reload() {
  47.     configtest || return $?
  48.     echo -n $"Reloading $prog: "
  49.     killproc $nginx -HUP
  50.     RETVAL=$?
  51.     echo
  52. }

  53. force_reload() {
  54.     restart
  55. }

  56. configtest() {
  57.   $nginx -t -c $NGINX_CONF_FILE
  58. }

  59. rh_status() {
  60.     status $prog
  61. }

  62. rh_status_q() {
  63.     rh_status >/dev/null 2>&1
  64. }

  65. case "$1" in
  66.     start)
  67.         rh_status_q && exit 0
  68.         $1
  69.         ;;
  70.     stop)
  71.         rh_status_q || exit 0
  72.         $1
  73.         ;;
  74.     restart|configtest)
  75.         $1
  76.         ;;
  77.     reload)
  78.         rh_status_q || exit 7
  79.         $1
  80.         ;;
  81.     force-reload)
  82.         force_reload
  83.         ;;
  84.     status)
  85.         rh_status
  86.         ;;
  87.     condrestart|try-restart)
  88.         rh_status_q || exit 0
  89.             ;;
  90.     *)
  91.         echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
  92.         exit 2
  93. esac
复制代码

论坛徽章:
0
3 [报告]
发表于 2008-09-08 01:00 |只看该作者
顶一下

论坛徽章:
0
4 [报告]
发表于 2008-11-20 15:33 |只看该作者
写的不错,要是能增加php-cgi的启动就更好了,不是么?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP