标签:rewrite round tar 命令 系统 room ref echo dmi
配置HAProxy负载均衡(使用3台虚拟机,1台作为HAProxy调度器、2台作为Real Server、物理机作为客户端)
(HAProxy调度器IP:192.168.4.50 Web服务器IP:192.168.4.53/54)
一、基本配置
1、 装包
[root@node01 conf]# yum -y install haproxy
. 2 修改配置文件
[root@pc50 conf]# cp /etc/haproxy/haproxy.cfg /root/ 备份配置文件
[root@pc50 conf]# chkconfig haproxy on 开机自启
[root@pc50 conf]# chkconfig --list haproxy 加入系统命令
haproxy 0:关闭1:关闭2:启用3:启用4:启用5:启用
[root@pc50 ~]# vim /etc/haproxy/haproxy.cfg
31 user haproxy <定义用户
32 group haproxy <定义用户组
33 daemon
59 stats uri /admin
60
61 listen weblb 0.0.0.0:80
62 cookie SERVERID rewrite
63 balance roundrobin
64 server weba 192.168.4.53:80 cookie app1inst1 check inter 2000 rise 2 fall 5 >配置后端服务器
65 server webb 192.168.4.54:80 cookie app1inst2 check inter 2000 rise 2 fall 5
二、配置后端Web服务(53/54)
[root@pc53 ~]# yum -y install httpd
[root@pc53 ~]# echo '192.168.4.53' > /var/www/html/index.html
[root@pc53 ~]# secho '192.168.4.53' > /var/www/html/index.html
[root@pc54 ~]# yum -y install httpd
[root@pc54 ~]# echo '192.168.4.53' > /var/www/html/index.html
[root@pc54 ~]# yum -y install httpd
三 、启动服务器并设置开机启动
[root@pc50 ~]#systemctl start haproxy
[root@pc50 ~]#systemctl enable haproxy
四、客户端验证
[root@room1pc33 桌面]# firefox http://192.168.4.50/haproxy-admin >测试状态监控页面是否正常
标签:rewrite round tar 命令 系统 room ref echo dmi
原文地址:http://blog.51cto.com/13560729/2063899