1. 程式人生 > >VM下Centos7安裝nginx服務

VM下Centos7安裝nginx服務

1.配置安裝環境
nginx編譯依賴gcc環境,先安裝gcc.命令:yum install gcc-c++
nginx的http模組使用pcre來解析正則表示式,所以需要在linux上安裝pcre庫.命令:yum install -y pcre pcre-devel
nginx使用zlib對http包的內容進行gzip,所以需要在linux上安裝zlib庫.命令: yum install -y zlib zlib-devel
nginx不僅支援http協議,還支援https(即在ssl協議上傳輸http),所以需要在linux安裝openssl庫.命令: yum install -y openssl openssl-devel
2.編譯安裝
下載
nginx 1.8.0
,將壓縮包copy到linux伺服器

解壓:
tar -zxvf nginx-1.8.0.tar.gz

cd nginx-1.8.0

建立 /var/run/nginx資料夾

建立臨時資料夾 /var/temp/nginx
配置configure
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/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
3.啟動nginx
cd /usr/local/nginx/sbin/
./nginx
4.停止nginx
cd /usr/local/nginx/sbin
./nginx -s stop
此方式是強制停止,如果有在執行的任務,會立即終止
cd /usr/local/nginx/sbin
./nginx -s quit
此方式停止步驟是待nginx程序處理任務完畢進行停止。
5.重啟nginx
./nginx -s quit
./nginx
先停止,再啟動
./nginx -s reload
重新載入配置檔案
6.開啟虛擬機器的80埠
因為CentOS 7.0預設使用的是firewall作為防火牆,我沒有改為iptables防火牆
命令:firewall-cmd --zone=public --add-port=80/tcp --permanent
出現success表示成功
7.重啟防火牆
命令: firewall-cmd --reload
8.測試nginx服務
瀏覽器輸入虛擬機器的IP地址,nginx預設是80埠,所以不用帶埠訪問,直接輸入IP就可以

OK,結束。