標籤:

CentOS 7編譯安裝 + Nginx 1.9.4

一款非常好用的反向代理伺服器。

安裝 yum安裝和編譯安裝。 yum 自動管理依賴關係。

編譯安裝(方式在各類Linux的發行版中差異較大)

可控制性強,排錯容易。依賴關係清晰。環境變數明確。

nginx.org/en/download.h

環境:CentOS7+Nginx1.9.3

1安裝依賴的類庫

[root@localhost ~]# yum install -y zlib zlib-devel openssl openssl-devel pcre pcre-devel

2 下載nginx

[root@localhost ~]# wget http://nginx.org/download/nginx-1.9.4.tar.gz

3 安裝nginx

1[root@localhost src]# tar -zxvf nginx-1.9.4.tar.gz -C /usr/local/[root@localhost src]# mkdir /usr/loca/nginx/ && cd nginx-1.9.4/[root@localhost nginx-1.9.4]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module[root@localhost nginx-1.9.4]# make && make install

4 nginx 啟動

[root@localhost nginx-1.9.4]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

5 開始firewall埠服務

firewall-cmd --permanent --zone=public --add-service=http

6 nginx 常用命令

/usr/local/nginx/sbin/nginx -s reload /usr/local/nginx/sbin/nginx -s stop/usr/local/nginx/sbin/nginx -t -c /usr/local/conf/nginx.cnf

這裡我安裝好了以後啟動nginx服務。到這個目錄下面。/usr/local/nginx/sbin/

執行./nginx 就啟動成功了。

然後查看下服務是否起來。

推薦閱讀:

假如有一張100W左右數據的表,根據查詢條件進行分頁。如何分頁?
微軟的 Web 伺服器為何能屹立不倒?
CentOS 7 YUM 10分鐘快速安裝 LNMP 環
【IT修真院系列】nginx如何配置?
nginx提示錯誤 Access denied.?

TAG:Nginx |