下載地址
http://nginx.org/en/download.html
Mainline version 主線版本
Stable version 穩(wěn)定版本
Legacy versions 舊版本
特別說明:模塊依賴性Nginx需要依賴下面3個(gè)包
- gzip 模塊需要 zlib 庫 ( 下載: http://www.zlib.net/ )
- rewrite 模塊需要 pcre 庫 ( 下載: http://www.pcre.org/ )
- ssl 功能需要 openssl 庫 ( 下載: http://www.openssl.org/ )
安裝
- Nginx運(yùn)行需要用到Pcre=Pcre Compatible Regular Expressions(中文pcre兼容正則表達(dá)式)
yum install pcre-devel -y
-
OpenSSL安裝
yum install openssl-devel -y
-
zlib安裝
yum install zlib-devel -y
我這邊已經(jīng)是安裝過的 使用wget 下載Nginx文件
wget http://nginx.org/download/nginx-1.12.1.tar.gz
- 解壓
tar -zvxf nginx-1.12.1.tar.gz
- nginx安裝
采用默認(rèn)配置
cd nginx-1.12.1
./configure
編譯
make
安裝
make install
- 檢測是否安裝成功
cd /usr/local/nginx/sbin/
./nginx -t
啟動(dòng)
- 開放80端口
/etc/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/init.d/iptables save
/etc/rc.d/init.d/iptables restart
-默認(rèn)配置文件啟動(dòng)
cd /usr/local/nginx/sbin
./nginx
指明配置文件方式啟動(dòng)
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
-
測試
瀏覽器訪問:http://192.168.200.130
使用命令行
curl 127.0.0.1
停止
命令行窗口箭昵,輸入命令:/usr/local/nginx/sbin/nginx -s stop
或者/usr/local/nginx/sbin/nginx -s quit
注:stop是快速停止nginx狭姨,可能并不保存相關(guān)信息拨拓;quit是完整有序的停止nginx躺枕,并保存相關(guān)信息服猪。
重新載入
命令行窗口,輸入命令:/usr/local/nginx/sbin/nginx -s reload
該命令行可以使得拐云,Nginx重新加載配置信息罢猪。
版本
命令行窗口,輸入命令:/usr/local/nginx/sbin -v