標籤:自啟動 code 前置 查看 iptable 跳轉 百度 bubuko etc
原文地址:Nginx Linux詳細安裝部署教程
一、Nginx簡介
Nginx是一個web伺服器也可以用來做負載平衡及反向 Proxy使用,目前使用最多的就是負載平衡,具體簡介我就不介紹了百度一下有很多,下面直接進入安裝步驟
二、Nginx安裝
1、下載Nginx及相關組件
下載相關組件
[[email protected] src]# wget http://nginx.org/download/nginx-1.10.2.tar.gz省略安裝內容...[[email protected] src]# wget http://www.openssl.org/source/openssl-fips-2.0.10.tar.gz省略安裝內容...[[email protected] src]# wget http://zlib.net/zlib-1.2.11.tar.gz省略安裝內容...[[email protected] src]# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz省略安裝內容...
安裝c++編譯環境,如已安裝可略過
[[email protected] src]# yum install gcc-c++省略安裝內容...期間會有確認提示輸入y斷行符號Is this ok [y/N]:y省略安裝內容...
2、安裝Nginx及相關組件**
openssl安裝
[[email protected] src]# tar zxvf openssl-fips-2.0.10.tar.gz省略安裝內容...[[email protected] src]# cd openssl-fips-2.0.10[[email protected] openssl-fips-2.0.10]# ./config && make && make install省略安裝內容...
pcre安裝
[[email protected] src]# tar zxvf pcre-8.40.tar.gz省略安裝內容...[[email protected] src]# cd pcre-8.40[[email protected] pcre-8.40]# ./configure && make && make install省略安裝內容...
zlib安裝
[[email protected] src]# tar zxvf zlib-1.2.11.tar.gz省略安裝內容...[[email protected] src]# cd zlib-1.2.11[[email protected] zlib-1.2.11]# ./configure && make && make install省略安裝內容...
nginx安裝
[[email protected] src]# tar zxvf nginx-1.10.2.tar.gz省略安裝內容...[[email protected] src]# cd nginx-1.10.2[[email protected] nginx-1.10.2]# ./configure && make && make install省略安裝內容...
3、啟動Nginx**
先找一下nginx安裝到什麼位置上了
[[email protected] src]# whereis nginxnginx: /usr/local/nginx
進入nginx目錄並啟動
[[email protected] src]#cd /usr/local/nginx[[email protected] nginx]# /sbin/nginx
可能會報錯
error while loading shared libraries: libpcre.so.1:cannot open shared object file: No such file or directory
按照下面方式解決
1.用whereis libpcre.so.1命令找到libpcre.so.1在哪裡2.用ln -s /usr/local/lib/libpcre.so.1 /lib64命令做個軟串連就可以了3.用sbin/nginx啟動Nginx4.用ps -aux | grep nginx查看狀態[[email protected] nginx]# whereis libpcre.so.1[[email protected] nginx]# ln -s /usr/local/lib/libpcre.so.1 /lib64[[email protected] nginx]# sbin/nginx[[email protected] nginx]# ps -aux | grep nginx 進入Linux系統的圖形介面,開啟瀏覽器輸入localhost會看到,說明nginx啟動成功
nginx的基本操作
啟動[[email protected] ~]# /usr/local/nginx/sbin/nginx停止/重啟[[email protected] ~]# /usr/local/nginx/sbin/nginx -s stop(quit、reload)命令協助[[email protected] ~]# /usr/local/nginx/sbin/nginx -h驗證設定檔[[email protected] ~]# /usr/local/nginx/sbin/nginx -t設定檔[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf
4、簡單配置Nginx
開啟nginx設定檔位於nginx目錄下的conf檔案夾下
[[email protected] nginx]# vim conf/nginx.conf
儲存退出並且重啟nginx
[[email protected] nginx]# sbin/nginx -s reload
5、開啟外網訪問
在Linux系統中預設有防火牆Iptables管理者所有的連接埠,只啟用預設遠端連線22連接埠其他都關閉,咱們上面設定的80等等也是關閉的,所以我們需要先把應用的連接埠開啟
方法一:直接關閉防火牆,這樣效能較好,但安全性較差,如果有前置防火牆可以採取這種方式
關閉防火牆[[email protected] ~]# service iptables stop關閉開機自啟動防火牆[[email protected] ~]# chkconfig iptables off[[email protected] ~]# chkconfig --list|grep ipt
方法二將開啟的連接埠加入防火牆白名單中,這種方式較安全但效能也相對較差
編輯防火牆白名單[[email protected] ~]# vim /etc/sysconfig/iptables增加下面一行代碼-A INPUT -p tcp -m state -- state NEW -m tcp --dport 80 -j ACCEPT儲存退出,重啟防火牆[[email protected] ~]# service iptables restart
Linux配置完畢了,使用另一台電腦而非安裝nginx的電腦,我是用的windows系統,配置一下host在“C:\Windows\System32\drivers\etc”下的hosts中配置一下網域名稱重新導向10.11.13.22 nginx.test.com nginx.test1.com nginx.test2.com然後cmd再ping一下這個網域名稱是否正確指向了這個IP上正確指向後在telnet一下80連接埠看一下是否可以與連接埠通訊(如果telnet提示沒有此命令是沒有安裝用戶端,在啟用或禁用windows功能處安裝後再操作即可)
得到以下介面及代表通訊成功
開啟這台Windows系統內的瀏覽器,輸入nginx.test.com會得到以下結果,就說明外網訪問成功
到此Nginx伺服器雛形部署完成。
6、Nginx負載平衡配置
Nginx集反向 Proxy和負載平衡於一身,在設定檔中修改配就可以實現
首先我們開啟設定檔
[[email protected] nginx]# vim conf/nginx.conf 每一個server就是一個虛擬機器主機,我們有一個當作web伺服器來使用listen 80;代表監聽80連接埠server_name xxx.com;代表外網訪問的網域名稱location / {};代表一個過濾器,/匹配所有請求,我們還可以根據自己的情況定義不同的過濾,比如對靜態檔案js、css、image制定專屬過濾root html;代表網站根目錄index index.html;代表預設首頁
這樣配置完畢我們輸入欄位名就可以訪問到該網站了。
負載平衡功能往往在接收到某個請求後分配到後端的多台伺服器上,那我們就需要upstream{}塊來配合使用
upstream xxx{};upstream模組是命名一個後端伺服器組,組名必須為後端伺服器網站網域名稱,內部可以寫多台伺服器ip和port,還可以設定跳轉規則及權重等等ip_hash;代表使用ip地址方式分配跳轉後端伺服器,同一ip請求每次都會訪問同一台後端伺服器server;代表後端伺服器地址server{};server模組依然是接收外部請求的部分server_name;代表外網訪問網域名稱location / {};同樣代表過濾器,用於制定不同請求的不同操作proxy_pass;代表後端伺服器組名,此組名必須為後端伺服器網站網域名稱server_name和upstream{}的組名可以不一致,server_name是外網訪問接收請求的網域名稱,upstream{}的組名是跳轉後端伺服器時網站訪問的網域名稱
配置一下Windows的host將我們要訪問的網域名稱aaa.test.com指向Linux
Nginx的負載功能就配置完成了。
【轉】Linux服務部署--Java(三) Nginx