nginx依賴一些軟體庫,在安裝之前請確保系統安裝了gcc、ssl、pcre和gzip等軟體,可以用rpm -q 指令查看軟體是否安裝。
[root@redhat1 ~]# rpm -q gcc
gcc-4.1.2-44.el5
依賴函式庫資訊如下:
(1). gzip 模組需要zlib 函式庫
#(2). rewrite 模組需要pcre 函式庫
(3). ssl 功能需要openssl 函式庫
如安裝pcre ,下載pcre至目的目錄下,這裡選擇的版本是pcre-8.38,下載完後執行以下操作
tar -zxvf pcre-8.38.tar.gz cd pcre-8.38 ./configure make make install
安裝nginx,執行以下指令
在預設情況下,經過編譯安裝的nginx已經包含了大部分可用模組,可以透過「./configure --help」選項來設定各個模組的使用情況,例如對不需要的http_ssi模組,可透過「--without-http_ssi_module 」參數關閉此模組;如果需要「http_perl」模組,則可以透過「--with-http_perl_module」參數安裝此模組。執行以下操作進行安裝。
tar -zxvf nginx-1.11.1.tar.gz cd nginx-1.11.1 ./configure --with-pcre=../pcre-8.38 --prefix=/usr/local/nginx make make install
偵測是否安裝成功,執行指令如下
[root@redhat1 sbin]# cd /usr/local/nginx/sbin
[root@redhat1 sbin]# ./nginx -t
出現以下資訊證明安裝成功
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
啟動nginx
[root@redhat1 sbin] # ./nginx
查看連接埠
[root@redhat1 sbin]# netstat -ntlp
結果如下:
proto recv-q send-q local address foreign address state pid/program name
tcp 0 listen 2993/hpiod
tcp 0 0 0.0.0.0 :834 0.0.0.0:* listen 2772/rpc.statd
tcp :* listen 3391/ricci
tcp 0 0 0.0.0.0:111 2733/portmap
tcp 0 0 0.0.0.0:80 0 0 0.0.0.0:16851 0.0.0.0:* listen .0.1:631 0.0.0.0:* listen 3024/cupsd
tcp * listen 3057/sendmail: acce
tcp 0 0 127.0.0.1:20070:2070. * listen 2998/python
tcp 0 0 :::22 listen 3013/sshd
也可以在瀏覽器中輸入:http://localhost來驗證是否啟動成功。
停止nginx
停止操作是透過向nginx進程發送訊號來進行的
ps -ef | grep nginx
#在進程清單裡面找master進程,它的編號就是主行程號碼了。
從容停止nginx:kill -quit 主程式號碼
強制停止nginx:pkill -9 nginx
重啟nginx:平滑重啟
如果改變了設定就要重新啟動nginx,請先關閉nginx再打開?不是的,可以向nginx 發送訊號,平滑重啟。
kill -hup 住進頭銜或行程號碼檔案路徑 或 /usr/local/nginx/sbin/nginx -s reload
#
注意,並在修改了設定檔後最好先檢查一下修改過的設定檔是否正 的確,以免重新啟動後nginx出現錯誤影響伺服器穩定運作。判
斷nginx設定是否正確指令如下:
nginx -t -c /usr/local/nginx/conf/nginx.conf 或 /usr/local/nginx/sbin /nginx -t
以上是Linux安裝nginx伺服器實例程式碼分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!