nginx依賴以下一些軟體庫,在安裝之前請確保安裝了這些軟體庫,它們包括:gcc,openssl,zlib,pcre(可透過rpm -q命令查詢是否已安裝),其中前三個庫可通過系統碟進行安裝,這裡僅簡單說說pcre的安裝:
下載pcre至/home目錄下,這裡選擇的版本是pcre-8.10,下載完後執行以下操作
[plain] view
plaincopy
-
1.[root@localhost home]# tar zxvf pcre-8.10.tar.gz //解壓縮 2. //切換到目錄下
-
3.[root@localhost pcre-8.10]#./configure //配置
-
5.[root@localhost pcre-8.10]#make install //安裝
- 安裝nginx從從
安裝nginx
從從
在預設情況下,經過編譯安裝的Nginx包含了大部分可用模組,可以透過「./configure --help」選項來設定各個模組的使用情況,例如對不需要的http_ssi模組,可透過「--without- http_ssi_module」參數關閉此模組;如果需要「http_perl」模組,則可以透過「--with-http_perl_module」參數安裝此模組。執行以下操作進行安裝
[plain] view
plaincopy
-
1.[root@localhost home]# tar zxvf nginx-1.0.2.tar.gz .
-
3.[root@localhostnginx-1.0.2]#./configure --with-http_stub_status_module --prefix=/usr/local/nginx
- 5.[root@localhost nginx-1.0.2]#make install
配置時使用"with-http_stub_status_module"參數來啟用Nginx- 配置時使用"with-http_stub_status_module"參數來啟用Nginx 的NginxNxus 功能,以監控當前狀態的功能,以監控當前狀態的當前狀態。
安裝完成後執行以下操作驗證安裝是否成功:
[plain] view
plaincopy
cd /usr/local/nginx/sbin
- ./nginx 🎠 r/local/nginx/conf/nginx. conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful至此,nginx的安裝已成功完成。
啟動nginx - cd /usr/local/nginx/sbin./nginx //啟動nginx
在瀏覽器中輸入:http://localhost驗證nginx是否成功啟動
以上就介紹了Nginx在Linux下的安裝與配置,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。