首页 > 代码库 > 开机启动 nginx php

开机启动 nginx php

1.nginx 官方脚本地址:http://wiki.nginx.org/RedHatNginxInitScript

2.

#!/bin/sh## nginx - this script starts and stops the nginx daemin## chkconfig:   - 85 15 # description:  Nginx is an HTTP(S) server, HTTP(S) reverse #               proxy and IMAP/POP3 proxy server# processname: nginx# config:      /usr/local/nginx/conf/nginx.conf# pidfile:     /usr/local/nginx/logs/nginx.pid# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ "$NETWORKING" = "no" ] && exit 0nginx="/usr/local/nginx/sbin/nginx"prog=$(basename $nginx)NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"lockfile=/var/lock/subsys/nginxstart() {    [ -x $nginx ] || exit 5    [ -f $NGINX_CONF_FILE ] || exit 6    echo -n $"Starting $prog: "    daemon $nginx -c $NGINX_CONF_FILE    retval=$?    echo    [ $retval -eq 0 ] && touch $lockfile    return $retval}stop() {    echo -n $"Stopping $prog: "    killproc $prog -QUIT    retval=$?    echo    [ $retval -eq 0 ] && rm -f $lockfile    return $retval}restart() {    configtest || return $?    stop    start}reload() {    configtest || return $?    echo -n $"Reloading $prog: "    killproc $nginx -HUP    RETVAL=$?    echo}force_reload() {    restart}configtest() {  $nginx -t -c $NGINX_CONF_FILE}rh_status() {    status $prog}rh_status_q() {    rh_status >/dev/null 2>&1}case "$1" in    start)        rh_status_q && exit 0        $1        ;;    stop)        rh_status_q || exit 0        $1        ;;    restart|configtest)        $1        ;;    reload)        rh_status_q || exit 7        $1        ;;    force-reload)        force_reload        ;;    status)        rh_status        ;;    condrestart|try-restart)        rh_status_q || exit 0            ;;    *)        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"        exit 2esac

官方的代码,有makedir的那个地方不好,用上面的代码。

 

具体为: vi /etc/init.d/nginx 这个文件,把上面的复制上

更改了两个地方:

  • nginx=”/usr/sbin/nginx” 修改成nginx执行程序的路径。
  • NGINX_CONF_FILE=”/etc/nginx/nginx.conf” 修改成配置文件的路径。

然后更改权限

  chmod 775 /etc/init.d/nginx
 
保存后,就可以通过该脚本对nginx服务进行管理了:
 
这样就可以使用
service nginx start
stop
reload 了
 
加入服务
chkconfig --add /etc/init.d/nginx
 
chkconfig --list|grep nginx
nginx           0:关闭    1:关闭    2:关闭    3:关闭    4:关闭    5:关闭    6:关闭
chkconfig --level 2345 nginx on 
chkconfig --list|grep nginx 

nginx           0:关闭    1:关闭    2:启用    3:启用    4:启用    5:启用    6:关闭

 

 

2.php

vi /etc/init.d/php-fpm

#!/bin/sh## php-fpm - this script starts and stops the php-fpm daemin## chkconfig: - 85 15# processname: php-fpm# config:      /usr/local/php/etc/php-fpm.confset -ePATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binDESC="php-fpm daemon"NAME=php-fpmDAEMON=/usr/local/php/sbin/php-fpm     CONFIGFILE=/usr/local/php/etc/php-fpm.conf   PIDFILE=/usr/local/php/var/run/php-fpm.pid  SCRIPTNAME=/etc/init.d/php-fpm  # If the daemon file is not found, terminate the script.test -x $DAEMON || exit 0d_start(){    $DAEMON -y $CONFIGFILE || echo -n " already running"}d_stop(){    kill -QUIT `cat $PIDFILE` || echo -n " no running"}d_reload(){    kill -HUP `cat $PIDFILE` || echo -n " could not reload"}case "$1" in    start)        echo -n "Starting $DESC: $NAME"        d_start        echo "."        ;;    stop)        echo -n "Stopping $DESC: $NAME"        d_stop        echo "."        ;;    reload)        echo -n "Reloading $DESC configuration..."        d_reload        echo "Reloaded."        ;;    restart)        echo -n "Restarting $DESC: $NAME"        d_stop        # Sleep for two seconds before starting again, this should give the nginx daemon some time to perform a graceful stop        sleep 2        d_start        echo "."        ;;    *)        echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload)" >&2        exit 3        ;;esacexit 0
chmod 775 /etc/init.d/php-fpm

chkconfig php-fpm on