Ngnix負載均衡安裝及配置
技術標籤:nginxlinuxjavacentostomcat
1.ngnix概念
Nginx是一款高效能的http 伺服器/反向代理伺服器及電子郵件(IMAP/POP3)代理伺服器。由俄羅斯的程式設計師Igor Sysoev所開發,官方測試nginx能夠支支撐5萬併發連結,並且cpu、記憶體等資源消耗卻非常低,執行非常穩定。
2.ngnix應用場景
http伺服器。Nginx是一個http服務可以獨立提供http服務。可以做網頁靜態伺服器。
虛擬主機。可以實現在一臺伺服器虛擬出多個網站。例如個人網站使用的虛擬主機。
反向代理,負載均衡。當網站的訪問量達到一定程度後,單臺伺服器不能滿足使用者的請求時,需要用多臺伺服器叢集可以使用nginx做反向代理。並且多臺伺服器可以平均分擔負載,不會因為某臺伺服器負載高宕機而某臺伺服器閒置的情況。
3.ngnix安裝
3.1下載
3.2安裝
1、安裝gcc的環境。yum install gcc-c++
2、安裝pcre庫。yum install -y pcre pcre-devel
3、安裝zlib庫。yum install -y zlib zlib-devel
4、安裝openssl庫。yum install -y openssl openssl-devel
5、把nginx的原始碼包上傳到linux系統
6、解壓縮
7、進入解壓後的目錄,使用configure命令建立一個makeFile檔案。
./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
8、建立資料夾
mkdir /var/temp/nginx/client –p
9、執行make命令 make
10、執行make install 命令 make install
11、安裝完畢
3.3啟動ngnix
1、進入ngnix的sbin目錄
cd /usr/local/ngnix/sbin
2、執行命令
./nginx
3、檢視ngnix是否啟動
ps –ef | grep ngnix
3.4關閉ngnix
第一種方式:./nginx -s stop
第二種方式(推薦): ./nginx -s quit
3.5重啟ngnix
1.先關閉後啟動。 2.重新整理配置檔案。./ngnix –s reload
3.6訪問ngnix
訪問本級ip即可,預設為80埠。需要關閉防火牆
關閉防火牆:chkconfig iptables off
4.配置虛擬主機
ngnix配置檔案:/usr/local/nginx/conf/nginx.conf
4.1通過埠區分不同虛擬機器
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
}
}
可以配置多個server,配置了多個虛擬主機。
新增虛擬主機:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
}
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-81;
index index.html index.htm;
}
}
}
重新載入配置檔案
/nginx -s reload
4.2通過域名區分虛擬主機
在本機host檔案中,設定兩個用於測試的域名
修改window的hosts檔案:(C:\Windows\System32\drivers\etc)
ngnix伺服器地址 :ceshi1.com
ngnix 伺服器地址 :ceshi2.com
ngnix配置檔案
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
}
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-81;
index index.html index.htm;
}
}
server {
listen 80;
server_name ceshi1.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
}
server {
listen 80;
server_name ceshi2.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html81;
index index.html index.htm;
}
}
}
5.ngnix反向代理
兩個域名指向同一臺nginx伺服器,使用者訪問不同的域名顯示不同的網頁內容。
1、安裝兩個tomcat。分別執行在8080和8081。
2、啟動tomcat。
3、ngnix檔案配置
upstream tomcat1 {
server 192.168.80.129:8080;
}
server {
listen 80;
server_name ceshi1.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://tomcat1;
index index.html index.htm;
}
}
upstream tomcat2 {
server 192.168.80.129:8081;
}
server {
listen 80;
server_name ceshi2.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://tomcat2;
index index.html index.htm;
}
}
4、重新載入配置檔案
6.ngnix負載均衡
如果一個服務由多條伺服器提供,需要把負載分配到不同的伺服器處理,需要負載均衡。
只需在upstream 內配置多個服務地址即可。
upstream tomcat2 {
server 192.168.80.129:8081;
server 192.168.80.130:8082;
}
可以根據伺服器的實際情況調整伺服器權重。權重越高分配的請求越多,權重越低,請求越少。預設是都是1
upstream tomcat2 {
server 192.168.80.129:8081;
server 192.168.80.130:8082 weight=2;
}