centos7下配置nginx反向代理負載均衡叢集
nginx是一個web伺服器,類似apache一樣,但是比apache效能更好,更快。還可以實現反向代理,和負載均衡,常用於構建web服務叢集的負載均衡。今天就來記錄一下,nginx的安裝與配置,實現負載均衡的作用。 |
實驗環境:
192.168.1.188 nginx負載均衡器
192.168.1.189 web01伺服器
192.168.1.190 web02伺服器
軟體準備:
7.4 x86_64
nginx-1.6.3.tar.gz
安裝nginx軟體
安裝依賴軟體包
集合
[root@localhost ~]# yum -y install openssl openssl-devel pcre pcre-devel gcc
安裝nginx軟體包
集合
[root@localhost ~]# mkdir /app [root@localhost ~]# cd /app [root@localhost ~]# wget -q [root@localhost ~]# useradd -s /sbin/nologin -M [root@localhost ~]# tar xf nginx-1.6.3.tar.gz [root@localhost ~]# cd nginx-1.6.3 [root@localhost ~]# ./configure --user=nginx --group=nginx --prefix=/app/nginx --with-http_stub_status_module --with-http_ssl_module [root@localhost ~]# make && make install
配置檔案
(以下操作在web01和web02上進行)
[root@localhost ~]# vim /app/nginx/conf/nginx.conf
將配置檔案修改為以下內容
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "http_referer" ' '"$http_user_agent" " $http_x_forwarded_for"'; server { listen 80; server_name bbs.dengchuanghai.org; location / { root html/bbs; index index.html index.htm; } access_log logs/access_bbs.log main; } }
[root@localhost ~]# mkdir /app/nginx/html/bbs [root@localhost ~]# echo "192.168.1.189 bbs" >>/app/nginx/html/bbs/index.html [root@localhost ~]# echo "192.168.1.189 bbs.dengchuanghai.org" >> /etc/hosts [root@localhost ~]# echo "192.168.1.190 bbs" >>/app/nginx/html/bbs/index.html [root@localhost ~]# echo "192.168.1.190 bbs.dengchuanghai.org" >> /etc/hosts
(分別在兩臺web伺服器上輸入以上內容)
然後分別啟動nginx
[root@localhost ~]# /app/nginx/sbin/nginx -t (檢查配置檔案有無錯誤) [root@localhost ~]# /app/nginx/sbin/nginx 啟動 [root@localhost ~]# ss -tnlp | grep 80
使用curl bbs.dengch
,以下操作在nginx負載均衡器上進行
[root@localhost ~]# vim /app/nginx/conf/nginx.conf
更改為如下內容
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; upstream www_server_pools{ server 192.168.1.190:80 weight=1; server 192.168.1.189:80 weight=1; } server { listen 80; server_name location / { proxy_pass } } }
[root@localhost ~]# echo "192.168.1.188
檢查語法
[root@localhost ~]# /app/nginx/sbin/nginx -t
啟動服務
[root@localhost ~]# /app/nginx/sbin/nginx
使用curl
發現結果輸出為兩臺伺服器輪流輸出
實驗結束
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2698196/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- docker下nginx反向代理和負載均衡配置DockerNginx負載
- nginx+tomcat反向代理負載均衡配置NginxTomcat負載
- nginx配置web服務|反向代理|負載均衡NginxWeb負載
- Apache配置反向代理、負載均衡和叢集(mod_proxy方式)Apache負載
- 介紹下Nginx 反向代理與負載均衡Nginx負載
- 【Nginx】Nginx反向代理和負載均衡部署Nginx負載
- nginx詳解反向代理負載均衡Nginx負載
- Nginx負載均衡反向代理伺服器Nginx負載伺服器
- [原創]Nginx反向代理及負載均衡Nginx負載
- nginx面試題-nginx負載均衡與正反向代理Nginx面試題負載
- mariadb叢集與nginx負載均衡配置–centos7版本Nginx負載CentOS
- Nginx入門(2)反向代理和負載均衡Nginx負載
- Nginx反向代理負載均衡的容器化部署Nginx負載
- nginx反向代理和負載均衡策略實戰案例Nginx負載
- nginx+tomcat實現反向代理+負載均衡NginxTomcat負載
- Nginx伺服器的使用與反向代理負載均衡Nginx伺服器負載
- Nginx 全模組安裝及匹配方式、反向代理和負載均衡配置Nginx負載
- 負載均衡叢集負載
- Nginx實現叢集的負載均衡配置過程詳解Nginx負載
- Nginx反向代理+負載均衡簡單實現(https方式)Nginx負載HTTP
- nginx反向代理負載均衡與動靜頁面分離Nginx負載
- 秒懂負載均衡與反向代理負載
- 代理與反向代理、負載均衡和快取負載快取
- 在windows環境下 nginx + .net core 3.1 實現反向代理和負載均衡WindowsNginx負載
- nginx之 nginx-1.9.7 + tomcat-8.5.15 反向代理+應用負載均衡 安裝配置NginxTomcat負載
- 圖解Nginx,系統架構演變 + Nginx反向代理與負載均衡圖解Nginx架構負載
- apache tomcat叢集配置和負載均衡ApacheTomcat負載
- Nginx搭建反向代理負載均衡和web快取伺服器Nginx負載Web快取伺服器
- 誰說前端不需要懂-Nginx反向代理與負載均衡前端Nginx負載
- docker初體驗:docker部署nginx負載均衡叢集DockerNginx負載
- Nginx+tomcat實現叢集跟負載均衡NginxTomcat負載
- Nginx實現tomcat叢集進行負載均衡NginxTomcat負載
- Nginx+tomcat實現叢集和負載均衡NginxTomcat負載
- 如何使用 Weave 以及 Docker 搭建 Nginx 反向代理/負載均衡伺服器DockerNginx負載伺服器
- nginx反向代理、負載均衡配置與linux環境下的安裝及通過ip和域名訪問nginxNginx負載Linux
- dubbo叢集和負載均衡負載
- Apache +Tomcat的負載均衡與叢集配置ApacheTomcat負載
- nginx反向大理和負載均衡以及高可用Nginx負載