nginx set to open start

1 we /etc/init.d/nginx

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  NGINX is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:     /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration."configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
if [ -z "`grep $user /etc/passwd`" ]; then
   useradd -M -s /bin/nologin $user
fi
options=`$nginx -V 2>&1 | grep 'configure arguments:'`
for opt in $options; do
   if [ `echo $opt | grep '.*-temp-path'` ]; then
       value=`echo $opt | cut -d "=" -f 2`
       if [ ! -d "$value" ]; then
           # echo "creating" $value
           mkdir -p $value && chown -R $user $value
       fi
   fi
done
}
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
make_dirs
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
sleep 1
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 2
esac

2 red mark for his position to modify the file path

  nginx = "/ usr / local / nginx / sbin / nginx" modified path nginx execution of the program.

  NGINX_CONF_FILE = "/ usr / local / nginx / conf / nginx.conf" modified path of the profile.

Set execute permissions on the file to save after 3 script file:

  chmod a+x /etc/init.d/nginx

by the start script stop nginx service

  /etc/init.d/nginx start

  /etc/init.d/nginx stop

Use chkconfig management, will join chkconfig nginx service management list

  chkconfig --add /etc/init.d/nginx

6 using nginx service to be started, stopped. Reboot and other operations

  service nginx start
  service nginx stop

7 startup mode setting terminal

  chkconfig nginx on

8 If the / bin / sh ^ M appears: Damaged interpreter: No such file or directory error

  The reason is that the script is written in the windows environment, so line breaks inconsistency error occurs, wrap the end of the character is \ n \ r, but in linux is \ n, so everywhere wrap will be more out of a \ r  

  :set ff=unix
  :wq

Guess you like

Origin www.cnblogs.com/Tony100/p/11287964.html