nginx是C語言開發,建議在linux上運行,本教學使用Centos7作為安裝環境。
安裝nginx需要先將官網下載的源碼進行編譯,編譯依賴gcc環境,如果沒有gcc環境,需要安裝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
1.4 openssl
##1.4 openssl
## 密碼演算法、常用的金鑰和憑證封裝管理功能及SSL協議,並提供豐富的應用程式供測試或其它目的使用。nginx不僅支援http協議,也支援https(也就是在ssl協定上傳送http),所以需要在linux安裝openssl函式庫。
#直接下載.tar. gz安裝套件
2.2 解壓縮
tar -zxvf nginx-1.12.1.tar.gz cd nginx-1.12.12.3 設定 其實在nginx-1.10. 1 版你就不需要去設定相關東西,預設就可以了。當然,如果你要自己配置目錄也是可以的。
1、使用預設配置(建議)
./configure2、自訂配置(不建議)註:
將暫存檔案目錄指定為/var/temp/nginx,首先需要在/var下建立temp及nginx目錄(/var/temp/nginx)
./configure \--prefix=/usr/local/nginx \--conf-path=/usr/local/nginx/conf/nginx.conf \--pid-path=/usr/local/nginx/conf/nginx.pid \--lock-path=/var/lock/nginx.lock \--error-log-path=/var/log/nginx/error.log \--http-log-path=/var/log/nginx/access.log \--with-http_gzip_static_module \--http-client-body-temp-path=/var/temp/nginx/client \--http-proxy-temp-path=/var/temp/nginx/proxy \--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \--http-scgi-temp-path=/var/temp/nginx/scgi
make make install
whereis nginx
cd /usr/local/nginx/sbin/./nginx ./nginx -s stop ./nginx -s quit ./nginx -s reload ./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。 ./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。
#
ps aux|grep nginx
重啟nginx
1.先停止再啟動(建議):
對nginx 進行重啟相當於先停止再啟動,也就是先執行停止命令再執行啟動命令。如下:
./nginx -s quit ./nginx
2.重新載入設定檔:
當ngin x的設定檔nginx.conf 修改後,要想讓設定生效需要重新啟動nginx,使用-s reload不用先停止ngin x再啟動nginx 即可將設定資訊在nginx 中生效,如下:
#########./nginx -s reload###啟動成功後,在瀏覽器輸入對應機器的IP位址(如:192.168.1.121),可以看到這樣的頁面:###############2.4 開機自啟動#######即在rc.local增加啟動程式碼就可以了。 ############
vim /etc/rc.local###增加一行/usr/local/nginx/sbin/nginx###############設定執行權限:### #########
chmod 755 rc.local###到這裡,nginx就安裝完畢了,啟動、停止、重新啟動操作也都完成了。 ###### ###
以上是JAVA--如何在CentOS下安裝Nginx伺服器的方法範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!