您好,登錄后才能下訂單哦!
本文在介紹關于centos6.8 nginx安裝教程的基礎上,重點探討了其具體步驟,步驟簡單易上手操作,文章內容步步緊湊,希望大家根據這篇文章可以有所收獲。
準備條件
yum install -y gcc-c++yum
install -y pcre pcre-develyum
install -y zlib zlib-develyum
install -y openssl openssl-devel
安裝
wget https://nginx.org/download/nginx-1.8.0.tar.gz
tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --with-pcre
make && make install
查看服務路徑
find/ -name nginx
進入nginx安裝路徑:cd /usr/local/nginx/sbin
啟動服務
啟動:
1. ./nginx
2. /usr/local/nginx/sbin/nginx
-c /usr/local/nginx/conf/nginx.conf
兩種方式都可以
4. 停止:
從容停止:kill -QUIT 19795(注意:19795是Nginx的進程號)
快速停止:kill -TERM 46968(注意:46968是Nginx的進程號)
(強制停止:pkill -9 nginx
./nginx -s stop:此方式相當于先查出nginx進程id再使用kill命令強制殺掉進程。
./nginx -s quit:此方式停止步驟是待nginx進程處理任務完畢進行停止。
先停止再啟動:./nginx -s quit; ./nginx)
.驗證nginx的配置文件是否正確:
1. cd /usr/local/nginx/sbin 進入nginx的安裝目錄,接著執行 ./nginx -t
重新加載配置文件:
./nginx -s reload
查看nginx進程:
1. ps -ef |grep nginx
2.ps aux|grep nginx
看完上述內容,你們掌握安裝centos6.8 nginx的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。