1. 程式人生 > >CentOS下安裝Nginx服務器

CentOS下安裝Nginx服務器

代碼 grep 服務 表達式 12.1 img lock gcc ror

一、nginx安裝環境

nginx是C語言開發,建議在linux上運行,本教程使用Centos7作為安裝環境。

1.1 gcc

安裝nginx需要先將官網下載的源碼進行編譯,編譯依賴gcc環境,如果沒有gcc環境,需要安裝gcc:yum install gcc-c++

1.2 PCRE

PCRE(Perl Compatible Regular Expressions)是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx的http模塊使用pcre來解析正則表達式,所以需要在linux上安裝pcre庫。

   yum install -y pcre pcre-devel

   註:pcre-devel是使用pcre開發的一個二次開發庫。nginx也需要此庫。

1.3 zlib

zlib庫提供了很多種壓縮和解壓縮的方式,nginx使用zlib對http包的內容進行gzip,所以需要在linux上安裝zlib庫。

   yum install -y zlib zlib-devel

1.4 openssl

OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼算法、常用的密鑰和證書封裝管理功能及SSL協議,並提供豐富的應用程序供測試或其它目的使用。

nginx不僅支持http協議,還支持https(即在ssl協議上傳輸http),所以需要在linux安裝openssl庫。

   yum install -y openssl openssl-devel

二、編譯安裝

2.1 官網下載

方式一:直接下載.tar.gz安裝包,地址:https://nginx.org/en/download.html

技術分享

方式二:使用wget命令下載:

wget -c https://nginx.org/download/nginx-1.12.1.tar.gz

2.2 解壓

tar -zxvf nginx-1.12.1.tar.gz
cd nginx-1.12.1

2.3 配置

其實在 nginx-1.10.1 版本中你就不需要去配置相關東西,默認就可以了。當然,如果你要自己配置目錄也是可以的。

1、使用默認配置(推薦)

./configure

2、自定義配置(不推薦)

註:將臨時文件目錄指定為/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

3、編譯安裝

make
make install

編譯安裝完成之後可以查看nginx的安裝路徑:

whereis nginx

技術分享

4、啟動、停止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命令強制殺掉進程。

5、查詢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

啟動成功後,在瀏覽器輸入對應機器的IP地址(如:192.168.1.121),可以看到這樣的頁面:

技術分享

2.4 開機自啟動

即在rc.local增加啟動代碼就可以了。

vim /etc/rc.local

增加一行 /usr/local/nginx/sbin/nginx

技術分享

設置執行權限:

chmod 755 rc.local

到這裏,nginx就安裝完畢了,啟動、停止、重啟操作也都完成了。

CentOS下安裝Nginx服務器