linux下开机启动nginx与resin的配置方法

发布时间:2020-07-19编辑:脚本学堂
本文介绍下,在linux系统中,将nginx与resin配置为开机启动的方法,首先将nginx配置为系统服务,然后创建了启动脚本。有需要的朋友参考下吧。

1,将nginx配置为系统的服务
vi /etc/rc.d/init.d/nginx

启动管理脚本
 

复制代码 代码示例:

#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# this script create it by gcec at 2009.10.22.
# it is v.0.0.1 version.
# if you find any errors on this scripts,please contact gcec cyz.
# and send mail to support at gcec dot cc.
#
# 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
 

2,配置nginx可自动启动
让nginx有可执行的权限
chmod +x nginx
将nginx加入到服务当中
chkconfig --add nginx
配置nginx的运行级别,让其可以在系统启动的时候跟着启动
chkconfig --level 35 nginx on

nginx的启动与关闭:
 

复制代码 代码示例:
启动:service nginx start
关闭:service nginx stop
重启:service nginx restart

将resin配置为系统服务:
进入$RESIN_HOME
进入contrib目录,将init.resin文件copy到/etc/rc.d/init.d/resin
cp init.resin /etc/rc.d/init.d/resin

给resin可执行的权限
chmod +x /etc/rc.d/init.d/resin

将resin加入到系统服务当中
chkconfig --add resin

将resin设置为自动启动
chkconfig --level 35 resin on