Nginx 是一款輕量級的 Web 服務器/反向代理服務器,比較流行,建議在 Linux 下安裝運行。html
它們包括:gcc,openssl,zlib,pcre(可經過rpm -q命令查詢是否已安裝),已安裝則跳過nginx
Nginx
的編譯環境 gcc
yum install gcc-c++
nginx
的 http
模塊使用 pcre
解析正則表達式,因此安裝 perl
兼容的正則表達式庫yum install -y pcre pcre-devel
nginx
使用 zlib
對 http
包的內容進行 gzip
yum install -y zlib zlib-devel
nginx
不只支持 http
協議,還支持 https
(即在 ssl
協議上傳輸 http
),若是使用了 https
,須要安裝 OpenSSL
庫yum install -y openssl openssl-devel
1.直接下載.tar.gz
安裝包,地址:https://nginx.org/en/download.html正則表達式
2.使用wget
命令下載(推薦放在 /usr/local路徑下)swift
wget -c https://nginx.org/download/nginx-1.12.2.tar.gz
我下載的是1.12.2版本,這個是目前的穩定版。
vim
tar -zxvf nginx-1.12.2.tar.gz
進入 解壓後的目錄
cd /usr/local/nginx-1.12.2
cd /usr/local/nginx-1.12.2
1.使用默認配置ruby
./configurebash
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
注意:使用默認配置時,nginx
被安裝到 /usr/local/nginx
下。測試
make
make install
whereis nginx
vim /etc/profile
在合適位置添加環境變量ui
export NGINX_HOME=/usr/local/nginx export PATH=$PATH:$NGINX_HOME/sbin
使配置生效
source /etc/profile
由於將 Nginx
配置到了環境變量中,所以,在任何路徑下均可以直接使用 nginx
命令,而不須要進入 nginx
路徑下執行。
若是沒有配置環境變量,則須要先進入 cd /usr/local/nginx/sbin
nginx
cd /usr/local/nginx/sbin
./nginx
ps -ef | grep nginx
nginx
./nginx -s stop:此方式至關於先查出nginx進程id再使用kill命令強制殺掉進程。
./nginx -s quit:此方式中止步驟是待nginx進程處理任務完畢進行中止。
./nginx -s stop
./nginx -s quit
nginx
1.先中止再啓動(推薦):
對 nginx 進行重啓至關於先中止再啓動,即先執行中止命令再執行啓動命令。以下:
./nginx -s quit ./nginx
2.修改配置文件,從新加載配置文件:
當 ngin x的配置文件 nginx.conf 修改後,要想讓配置生效須要重啓 nginx,使用-s reload
不用先中止 ngin x再啓動 nginx 便可將配置信息在 nginx 中生效,以下:
./nginx -s reload
一般能夠經過這個命令查看 nginx
配置文件的位置
./nginx -t
即在rc.local
增長啓動代碼就能夠了。
vi /etc/rc.local
增長一行 /usr/local/nginx/sbin/nginx
設置執行權限:
chmod 755 rc.local
nginx -c /usr/local/nginx/conf/nginx.conf
參考文章:https://blog.csdn.net/qq_30038111/article/details/79410354