詳解Centos7中Nginx開機自啟動的解決辦法
關(guān)于在centos7中設(shè)置Nginx開機自啟動,我們可以通過編寫開機自啟動shell腳本來解決。
測試環(huán)境
操作系統(tǒng):centos7 64位 1611
Nginx版本: 1.11.10
本機Nginx安裝時的配置參數(shù)
./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
以下是腳本內(nèi)容
#!/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.conf nginxd=/usr/local/nginx/sbin/nginx nginx_config=/usr/local/nginx/conf/nginx.conf nginx_pid=/usr/local/nginx/logs/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 /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" 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 :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里。
設(shè)置文件的訪問權(quán)限
[root@localhost]# chmod a+x /etc/init.d/nginx
(a+x ==> all user can execute 所有用戶可執(zhí)行)
這樣在控制臺就很容易的操作nginx了:查看Nginx當前狀態(tài)、啟動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 保存并退出,下次重啟會生效。
注意
如果開機后發(fā)現(xiàn)自啟動腳本沒有執(zhí)行,你要去確認一下rc.local這個文件的訪問權(quán)限是否是可執(zhí)行的,因為rc.local默認是不可執(zhí)行的。
修改rc.local訪問權(quán)限,增加可執(zhí)行權(quán)限
[root@localhost]# chmod +x /etc/rc.d/rc.local
現(xiàn)在重啟后,自啟動腳本就能正常執(zhí)行了。
可以通過以下命令來查看nginx進行的運行情況
[root@localhost]# ps aux | grep nginx
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
ubuntu18.04 安裝qt5.12.8及環(huán)境配置的詳細教程
這篇文章主要介紹了ubuntu18.04 安裝qt5.12.8及環(huán)境配置的教程,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-05-05grub損壞,開機出現(xiàn)GRUB 2 啟動提示符的解決方法
下面小編就為大家?guī)硪黄猤rub損壞,開機出現(xiàn)GRUB 2 啟動提示符的解決方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-12-12虛擬機安裝Linux rhel7.3操作系統(tǒng)(具體步驟)
這篇文章主要介紹了虛擬機安裝Linux rhel7.3操作系統(tǒng)(具體步驟),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-10-10Apache ab并發(fā)負載壓力測試實現(xiàn)方法
Apache的ab命令模擬多線程并發(fā)請求,測試服務器負載壓力,也可以測試nginx、lighthttp、IIS等其它Web服務器的壓力2019-09-09Linux XAMPP下啟用WordPress的自定義文件名(偽靜態(tài))功能
這篇文章主要介紹了Linux XAMPP下啟用WordPress的自定義文件名(偽靜態(tài))功能的相關(guān)資料,需要的朋友可以參考下2016-12-12CentOS 5.1下跑Mono和Asp.net的實現(xiàn)方法分享
由于想研究在linux下跑.net程序的可行性,于是嘗試在CentOS5.1下搭建Mono環(huán)境和Asp.Net的服務器。Asp.Net的服務器是采用mod_mono和Apache的方式搭建(Nginx的搭建尚未研究)2012-04-04