• 解决“service nginx does not support chkconfig”的问题?


    因为这2天要安装nginx服务器,其nginx没有提供启动脚本,就想自己写一个启动脚本,但是再写完脚本的时候,想使用service启动该服务,

    nginx启动脚本如下:

    #!/bin/bash
    # Startup script for the nginx Web Server
    # description: nginx is a World Wide Web server. It is used to serve
    # HTML files and CGI.
    # processname: nginx
    # pidfile: /usr/local/nginx/logs/nginx.pid
    # config: /usr/local/nginx/conf/nginx.conf
    PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
    export PATH
    NGINX_HOME=/usr/local/nginx/sbin
    NGINX_CONF=/usr/local/nginx/conf
    PHP_HOME=/usr/local/php-fcgi/bin
    if [ ! -f "$NGINX_HOME/nginx" ]
    then
        echo "nginxserver startup: cannot start"
        exit
    fi
    case "$1" in
        'start')
            $PHP_HOME/spawn-fcgi -a 127.0.0.1 -p 10080 -C 20 -u nobody -f $PHP_HOME/php-cgi
            $NGINX_HOME/nginx -c $NGINX_CONF/nginx.conf
            echo "nginx start successful"
            ;;
        'stop')
            killall -TERM php-cgi
            killall -TERM nginx
            ;;
    esac

    [root@node1 ~]# chkconfig --add nginx
    service nginx does not support chkconfig

    很是奇怪,后经过查找资料,发现如果想添加脚本用service启动,必须要脚本里面包含这2行:

    # chkconfig: - 85 15
    # description: nginx is a World Wide Web server. It is used to serve

    其他的都不所谓,只是个注意而已!!!

    修改后的nginx启动脚本:

    #!/bin/bash
    # Startup script for the nginx Web Server
    # chkconfig: - 85 15
    # description: nginx is a World Wide Web server. It is used to serve
    # HTML files and CGI.
    # processname: nginx
    # pidfile: /usr/local/nginx/logs/nginx.pid
    # config: /usr/local/nginx/conf/nginx.conf
    PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
    export PATH
    NGINX_HOME=/usr/local/nginx/sbin
    NGINX_CONF=/usr/local/nginx/conf
    PHP_HOME=/usr/local/php-fcgi/bin
    if [ ! -f "$NGINX_HOME/nginx" ]
    then
        echo "nginxserver startup: cannot start"
        exit
    fi
    case "$1" in
        'start')
            $PHP_HOME/spawn-fcgi -a 127.0.0.1 -p 10080 -C 20 -u nobody -f $PHP_HOME/php-cgi
            $NGINX_HOME/nginx -c $NGINX_CONF/nginx.conf
            echo "nginx start successful"
            ;;
        'stop')
            killall -TERM php-cgi
            killall -TERM nginx
            ;;
    esac


    [root@node1 ~]# chkconfig --add nginx
    ok ,没有错误提示,说明添加成功!启动下看看,

    [root@node1 ~]# service nginx stop
    /sbin/service: line 68: 18616 Terminated              env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
    [root@node1 ~]# service nginx start
    spawn-fcgi.c.190: child spawned successfully: PID: 18624
    nginx start successful

    大功告成!
     
     http://blog.csdn.net/gebitan505/article/details/17606799
  • 相关阅读:
    memcached +mysql+php 例子
    PHP利用memcache缓存技术提高响应速度
    实现QQ第三方登录教程(php)
    php如何解决多线程同时读写一个文件的问题
    php数组函数常见的那些
    PHP 5种方式获取文件后缀名
    函数与方程
    函数图像习题
    高中数学中需要重点关注的函数和图像
    特殊分段函数的图像画法
  • 原文地址:https://www.cnblogs.com/xiaoxiaodewo/p/5662970.html
Copyright © 2020-2023  润新知