CentOS 7 下 Nginx安裝以及配置
一、Nginx介紹
Nginx(發音同 engine x)是一款輕量級的Web 伺服器/反向代理伺服器及電子郵件(IMAP/POP3)代理伺服器,並在一個BSD-like 協議下發行。由俄羅斯的程式設計師Igor Sysoev所開發,最初供俄國大型的入口網站及搜尋引擎Rambler(俄文:Рамблер)使用。 其特點是佔有記憶體少,併發能力強,事實上nginx的併發能力確實在同類型的網頁伺服器中表現較好.目前中國大陸使用nginx網站使用者有:新浪、網易、 騰訊,另外知名的微網誌Plurk也使用nginx。
二、Nginx安裝
2.使用wget
命令下載(推薦)。如果沒有安裝wget,請參考《
wget -c https://nginx.org/download/nginx-1.11.6.tar.gz
我這裡下載的是最新版本。
下載如圖下:
3.解壓
tar -zxvf nginx-1.11.6.tar.gz
cd nginx-1.11.6
三、nginx的配置
1.使用預設配置(推薦)
./configure
執行該命令之後,發現需要以下的依賴庫:
(1)安裝gcc 環境
安裝 nginx 需要先將官網下載的原始碼進行編譯,編譯依賴 gcc 環境。
如果沒有 gcc 環境,則需要安裝:
yum install gcc-c++
(2)安裝PCRE依賴庫
PCRE(Perl Compatible Regular Expressions) 是一個Perl庫,包括 perl 相容的正則表示式庫。nginx 的 http 模組使用 pcre 來解析正則表示式,所以需要在 linux 上安裝 pcre 庫,pcre-devel 是使用 pcre 開發的一個二次開發庫。
nginx也需要此庫。命令:
yum install -y pcre pcre-devel
(3)安裝zlib 依賴庫
zlib 庫提供了很多種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的內容進行 gzip ,所以需要在 Centos 上安裝 zlib 庫。
zlib 庫安裝命令:
yum install -y zlib zlib-devel
(4)安裝OpenSSL安全套接字層密碼庫。
OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及 SSL 協議,並提供豐富的應用程式供測試或其它目的使用。 nginx 不僅支援 http 協議,還支援 https(即在ssl協議上傳輸http),所以需要在 Centos 安裝 OpenSSL 庫。
OpenSSL 安裝命令:
yum install -y openssl openssl-devel
再次執行配置命令:
./configure
成功:
如果報找不到openSSL,那麼可以指定一下路徑:
which openssl
./configure –prefix=/usr/local/nginx –with-openssl=/usr/bin/openssl
2. 自定義配置(不推薦)
./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
啟動和停止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命令強制殺掉程序。
預設埠為80,因為我已經配置埠80給tomcat了,所以這裡我們需要配置一下佔用的埠。
##cd /opt/nginx-1.11.6/conf ##注意修改的不是該路徑下的配置檔案。
cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.back
vi nginx.conf
修改效果圖:
我這裡改成了81埠。
重新啟動一下。
./nginx -s reload
查詢nginx程序:
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
啟動成功後,在瀏覽器可以看到這樣的頁面:
七、開機自啟動
即在rc.local增加啟動程式碼就可以了。
vi /etc/rc.local
增加一行
/usr/local/nginx/sbin/nginx
設定執行許可權:
chmod 755 /etc/rc.local
到這裡,nginx就安裝完畢了,啟動、停止、重啟操作也都完成了,當然,你也可以新增為系統服務,我這裡就不在演示了。
八、安裝命令小結:
wget -c https://nginx.org/download/nginx-1.11.6.tar.gz
tar -zxvf nginx-1.11.6.tar.gz
cd nginx-1.11.6
yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
./configure
make
make install
whereis nginx
cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.back
vi nginx.conf
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
ps aux|grep nginx