關于在centos7中設置Nginx開機自啟動,我們可以通過編寫開機自啟動shell腳本來解決。
測試環境
操作系統:centos7 64位 1611
Nginx版本: 1.11.10
本機Nginx安裝時的配置參數
./configure /--prefix=/usr/local/nginx /--pid-path=/usr/local/nginx/logs/nginx.pid /--lock-path=/var/lock/nginx.lock /--error-log-path=/var/log/nginx/error.log /--http-log-path=/var/log/nginx/access.log /--with-http_gzip_static_module /--http-client-body-temp-path=/var/temp/nginx/client /--http-proxy-temp-path=/var/temp/nginx/proxy /--http-fastcgi-temp-path=/var/temp/nginx/fastcgi /--http-uwsgi-temp-path=/var/temp/nginx/uwsgi /--http-scgi-temp-path=/var/temp/nginx/scgi
編寫腳本
[root@localhost]# vim /etc/init.d/nginx
以下是腳本內容
#!/bin/bash# nginx Startup script for the Nginx HTTP Server# it is v.0.0.2 version.# 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: /usr/local/nginx/logs/nginx.pid# config: /usr/local/nginx/conf/nginx.confnginxd=/usr/local/nginx/sbin/nginxnginx_config=/usr/local/nginx/conf/nginx.confnginx_pid=/usr/local/nginx/logs/nginx.pidRETVAL=0prog="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 1fi 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 /usr/local/nginx/logs/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" instart) start ;;stop) stop ;;reload) reload ;;restart) stop start ;;status) status $prog RETVAL=$? ;;*) echo $"Usage: $prog {start|stop|restart|reload|status|help}" exit 1esacexit $RETVAL:wq 保存并退出
*對于shell腳本中的部分文件路徑請修改成你主機上nginx的相應路徑,例如: nginxd=/usr/local/nginx/sbin/nginx nginx_config=/usr/local/nginx/conf/nginx.conf nginx_pid=/usr/local/nginx/logs/nginx.pid 以上都是本測試機nginx的相應路徑 還有nginx的pid默認路徑是nginx安裝目錄的logs/nginx.pid里。
設置文件的訪問權限
[root@localhost]# chmod a+x /etc/init.d/nginx
(a+x ==> all user can execute 所有用戶可執行)
這樣在控制臺就很容易的操作nginx了:查看Nginx當前狀態、啟動Nginx、停止Nginx、重啟Nginx…
usage : nginx {start|stop|restart|reload|status|help}
如果修改了nginx的配置文件nginx.conf,也可以使用上面的命令重新加載新的配置文件并運行,可以將此命令加入到rc.local文件中,這樣開機的時候nginx就默認啟動了
加入到rc.local文件中
[root@localhost]# vi /etc/rc.local
加入一行 /etc/init.d/nginx start 保存并退出,下次重啟會生效。
注意
如果開機后發現自啟動腳本沒有執行,你要去確認一下rc.local這個文件的訪問權限是否是可執行的,因為rc.local默認是不可執行的。
修改rc.local訪問權限,增加可執行權限
[root@localhost]# chmod +x /etc/rc.d/rc.local
現在重啟后,自啟動腳本就能正常執行了。
可以通過以下命令來查看nginx進行的運行情況
[root@localhost]# ps aux | grep nginx
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。
新聞熱點
疑難解答