前提是搭建yum安裝環境,見前面的教程資料
nginx是c語言開發,建議在linux上執行,本教程使用centos6.5作為安裝環境。
需要安裝gcc:yum install gcc-c++
pcre(perl compatible regular expressions)是乙個perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用pcre來解析正規表示式,
需要在linux上安裝pcre庫:yum install -y pcre pcre-devel
注:pcre-devel是使用pcre開發的乙個二次開發庫。nginx也需要此庫。
zlib庫提供了很多種壓縮和解壓縮的方式,nginx使用zlib對http包的內容進行gzip,
需要在linux上安裝zlib庫:yum install -y zlib zlib-devel
openssl 是乙個強大的安全套接字層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及ssl協議,並提供豐富的應用程式供測試或其它目的使用。
nginx不僅支援http協議,還支援https(即在ssl協議上傳輸http),
需要在linux安裝openssl庫:yum install -y openssl openssl-devel
將nginx-1.8.0.tar.gz拷貝至linux伺服器。
解壓:
tar -zxvf nginx-1.8.0.tar.gz
注意:上邊將臨時檔案目錄指定為/var/temp/nginx,需要在/var下建立temp及nginx目錄
make
make install
cd /usr/local/nginx
cd /usr/local/nginx/sbin/
./nginx
ps -aux|grep nginx
15098是nginx主程序的程序id,15099是nginx工作程序的程序id
注意:執行./nginx啟動nginx,這裡可以-c指定載入的nginx配置檔案,如下:
./nginx -c /usr/local/nginx/conf/nginx.conf
如果不指定-c,nginx在啟動時預設載入conf/nginx.conf檔案,此檔案的位址也可以在編譯安裝nginx時指定./configure的
數(--conf-path= 指向配置檔案(nginx.conf))
方式1,快速停止,此方式相當於先查出nginx程序id再使用kill命令強制殺掉程序:
cd /usr/local/nginx/sbin
./nginx -s stop
方式2,完整停止(建議使用),此方式停止步驟是待nginx程序處理任務完畢進行停止:
cd /usr/local/nginx/sbin
./nginx -s quit
方式1,先停止再啟動(建議使用),對nginx進行重啟相當於先停止nginx再啟動nginx,即先執行停止命令再執行啟動命令:
./nginx -s quit
./nginx
./nginx -s reload
nginx安裝成功,啟動nginx,即可訪問虛擬機器上的nginx:
到這說明nginx上安裝成功。
7.1 編寫shell指令碼
這裡使用的是編寫shell指令碼的方式來處理
vi /etc/init.d/nginx (輸入下面的**)
:wq 儲存並退出
7.2 設定檔案的訪問許可權
chmod a+x /etc/init.d/nginx (a+x ==> all user can execute 所有使用者可執行)
這樣在控制台就很容易的操作nginx了:檢視nginx當前狀態、啟動nginx、停止nginx、重啟nginx…
7.3 加入到rc.local檔案中
vi /etc/rc.local
加入一行 /etc/init.d/nginx start 儲存並退出,下次重啟會生效。
原文**: Nginx安裝手冊
1,nginx安裝環境 nginx是c語言開發,建議在linux上執行,本教程使用centos6.5作為安裝環境。gccyum install gcc c pcre pcre perl compatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫...
Nginx安裝手冊
nginx是c語言開發,建議在linux上執行,本教程使用centos6.5作為安裝環境。n gcc n pcre pcre perlcompatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用pcre來解析正規表示...
Nginx安裝手冊
nginx安裝手冊 nginx是c語言開發,建議在linux上執行,本教程使用centos6.5作為安裝環境。n gcc n pcre pcre perlcompatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用p...