linux系統為Centos 64位元
第一步:從http://nginx.org/download/上下載對應的版本(或wget http://nginx.org/download/nginx-1.5. 9.tar.gz直接在Linux上用指令下載)
第二步:解壓縮 tar -zxvf nginx-1.5.9.tar.gz
? --prefix=/usr/local/nginx ,或不執行此步,直接預設設定
第四步:
make 編譯(make的過程是把各種語言寫的原始碼文件,執行檔和各種函式庫檔)
make install 安裝(make install是把這些編譯出來的可執行檔和函式庫檔複製到適當的地方)
在設定資訊的時候,也就是在第三步,出現了一下錯誤:
錯誤為:./configure: error: the HTTP rewrite module requires the PCRE library.
y install pcre-devel
還
有可能出現:
de
yum -y install zlib-devel
還有可能出現:
錯誤提示:./configure: error: the HTTP cache module requires md5 functionsfrom OpenSSL library. option, 或 install the OpenSSL library into the system,or build the OpenSSL library statically from the source with nginx by using--with-http_ssl_module --with-openssl= options.解決方案
yum -y install openssl openssl-devel
安裝後在linux下啟動和關閉x (/usr /nginx/sbin/nginx -t 查看配置資訊是否正確)
web介面:http://192.168.189.136
:80/
停止操作
停止操作是透過向nginx程序發送訊號(什麼是訊號請參閱linux文 章)來進行的
步驟1:問
在進程列表裡 面找master進程,它的編號就是主進程號了。
步驟2:發送訊號
從容停止Nginx:
kill -QUIT 主程式號碼
Nginx:gin3號
pkill -9 nginx
另外, 若在nginx.conf配置了pid檔案存放路徑則該檔案存放的就是Nginx主進程號,如果沒指定則放在nginx的logs目錄下。有了pid文 件,我們就不用先查詢Nginx的主進程號,而直接向Nginx發送信號了,命令如下:
kill -信號類型 '/usr/nginx/logs/nginx.pid'
平滑重啟
如果更改了設定就要重啟Nginx,要先關閉Nginx再開啟?不是的,可以向Nginx 發送訊號,平滑重啟。
平滑重啟指令:
kill -HUP 住進頭銜或行程號碼檔案路徑
或使用
以上就介紹了centos7(64位)下安裝nginx-1.6.2,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。