安裝所需環境
nginx 是 c語言 開發,建議在 linux 上運行,當然,也可以安裝 windows 版本,本篇則使用 centos 7 作為安裝環境。
一. gcc 安裝
安裝nginx 需要先將官網下載的源碼進行編譯,編譯依賴gcc 環境,如果沒有gcc 環境,則需要安裝:
yum install gcc-c++
二. pcre pcre-devel 安裝
pcre(perl compatible regular expressions) 是一個perl函式庫,包括perl 相容的正規表示式函式庫。 nginx 的 http 模組使用 pcre 來解析正規表示式,所以需要在 linux 上安裝 pcre 函式庫,pcre-devel 是使用 pcre 開發的二次開發函式庫。 nginx也需要此程式庫。指令:
yum install -y pcre pcre-devel
三. zlib 安裝
zlib 函式庫提供了許多種壓縮和解壓縮的方式, nginx 使用zlib 對http 套件的內容進行gzip ,所以需要在centos 上安裝zlib 函式庫。
yum install -y zlib zlib-devel
四. openssl 安裝
#openssl 是一個強大的安全通訊端層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及ssl 協議,並提供豐富的應用程式供測試或其它目的使用。
nginx 不僅支援 http 協議,還支援 https(即在ssl協定上傳輸http),所以需要在 centos 安裝 openssl 函式庫。
yum install -y openssl openssl-devel
官網下載
1.直接下載.tar.gz安裝包,位址:
2.使用wget指令下載(推薦)。
wget -c https://nginx.org/download/nginx-1.10.1.tar.gz
我下載的是1.10.1版本,這個是目前的穩定版。
解壓縮
還是直接指令:
tar -zxvf nginx-1.10.1.tar.gz cd nginx-1.10.1
配置
##其實在nginx-1.10. 1 版你就不需要去設定相關東西,預設就可以了。當然,如果你要自己配置目錄也是可以的。./configure
./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
附註:將暫存檔案目錄指定為/var/temp/nginx,需要在/var下建立temp及nginx目錄
#編譯安裝
make make install
whereis nginx
啟動、停止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
vi /etc/rc.local
chmod 755 rc.local
以上是CentOS7下安裝Nginx伺服器實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!