centos6.7上使用nginx实现负载均衡!

前端之家收集整理的这篇文章主要介绍了centos6.7上使用nginx实现负载均衡!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

实现环境:

vmware workstation 11

centos6.7的系统下

Nginx服务器:192.168.239.136 防火墙关闭 setenforce 0

apache服务器1:192.168.239.138 防火墙关闭 setenforce 0

apache服务器2:192.168.239.139 防火墙关闭 setenforce 0

SecureCRT (ssh远程连接软件)


软件介绍:

Nginx介绍
lNginx是俄罗斯人编写的十分轻量级的HTTP服务器
l高性能的HTTP和反向代理服务器,同时也代理IMAP/POP3/SMTP服务器

lNginx发布以来,Nginx已经因为它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名
lNginx专为性能优化而开发,性能是其最重要的考量,实现上非常注重效率.
l能经受高负载的考验,有报告表明能支持高达50,000个并发连接数.
lNginx具有很高的稳定性,其它HTTP服务器当遇到访问的峰值,或者有人恶意发起慢速连接时,也很可能会导致服务器物理内存耗尽频繁交换,失去响应只能重启服务器.
l成本低廉
购买F5Big-IPNetScaler硬件负载均衡交换机几十万
Nginx基于BSD开源协议免费的、可商用
l支持rewrite重写规则
能够根据域名、URL的不同将HTTP请求分发到不同的后端服务器群组
l内置的健康检查功能
如果NginxProxy后端的某Web服务器宕机了,不会影响前端访问
节省带宽
l支持GZIP压缩
可以添加浏览本地缓存的Header头
l稳定性高
使用反向代理、几乎不会宕机
l支持热部署
不断服务进行更新

试验流程:

一、软件安装

[root@localhost ~]# yum install -y Nginx

注释:centos的官方的yum源里面不包含Nginx,所以我们想使用yum的话 就需要配置一下epel源

大家可以参考下面的链接

http://www.centoscn.com/CentOS/config/2014/0920/3793.html


二、Nginx负载均衡配置文件修改

只需要把这里改成我下面的。

http {

include /etc/Nginx/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 /var/log/Nginx/access.log main;


sendfile on;

#tcp_nopush on;


#keepalive_timeout 0;

keepalive_timeout 65;

#增加

upstream web1 {

server 192.168.239.139:80 weight=1 max_fails=2 fail_timeout=30s;

server 192.168.239.138:80 weight=1 max_fails=2 fail_timeout=30s;

}

#增加

server {

listen 80;

server_name localhost;

location / {

proxy_pass http://web1;

root html;

index index.html index.htm;

}

}


#gzip on;

# Load config files from the /etc/Nginx/conf.d directory

# The default server is in conf.d/default.conf

#include /etc/Nginx/conf.d/*.conf; #这里需要注释掉,不然起不到作用。


}

三、重启Nginx

[root@localhost ~]# /usr/sbin/Nginx -s reload


四、在apache1上面增加一个测试页。

wKioL1dNPg-gBf9GAAD2sGHTqSU535.png-wh_50

五、在apache2上面增加一个测试页

wKioL1dNPlLQVhzRAADLZx9GaE8189.png-wh_50

六、在我的物理机上测试!

在浏览器里输入Nginx的ip

wKiom1dNPibyllGTAAAzjlKuhqs824.png-wh_50

刷新

wKiom1dNPibxch9kAAA-7Dxh8XU761.png-wh_50


谢谢大家

原文链接:https://www.f2er.com/centos/382189.html

猜你在找的CentOS相关文章