溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么實(shí)現(xiàn)slave集群負(fù)載均衡

發(fā)布時(shí)間:2021-09-14 16:59:22 來源:億速云 閱讀:147 作者:chen 欄目:MySQL數(shù)據(jù)庫

這篇文章主要講解了“怎么實(shí)現(xiàn)slave集群負(fù)載均衡”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么實(shí)現(xiàn)slave集群負(fù)載均衡”吧!

一.介紹
由于互聯(lián)網(wǎng)系統(tǒng)讀的壓力要遠(yuǎn)大于寫的壓力,因此該軟件主要實(shí)現(xiàn)分散壓力,負(fù)載均衡的功能。
- 四層負(fù)載均衡(TCPIP協(xié)議的負(fù)載均衡)
haproxy lvs

- 七層負(fù)載均衡(http協(xié)議的負(fù)載均衡)
nginx

二.結(jié)構(gòu)圖
怎么實(shí)現(xiàn)slave集群負(fù)載均衡

三.安裝配置haproxy
1.將安裝包上傳
haproxy-1.7.9.tar.gz

2.編譯安裝
tar -xzvf haproxy-1.7.9.tar.gz
- 查看內(nèi)核版本
# uname -r
2.6.32-696.el6.x86_64

- 根據(jù)內(nèi)核版本進(jìn)行編譯
<1img src="https://img-blog.csdn.net/20170415144338483?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvamlhbmt1bmtpbmc=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="這里寫圖片描述" title="" style="box-sizing:border-box;outline:0px;margin:24px 0px;max-width:100%;word-break:break-all;cursor:zoom-in;color:#4F4F4F;font-family:-apple-system, " font-size:16px;text-align:justify;white-space:normal;background-color:#ffffff;"="">
yum install gcc*
make TARGET=linux26 PREFIX=/usr/local/haproxy ARCH=X86_64
make install PREFIX=/usr/local/haproxy

# /usr/local/haproxy/sbin/haproxy -v
HA-Proxy version 1.7.9 2017/08/18
Copyright 2000-2017 Willy Tarreau 3.建立haproxy用戶
useradd haproxy
chown -R  haproxy.haproxy /usr/local/haproxy

4.配置
- 復(fù)制haproxy文件到/usr/sbin下 
因?yàn)橄旅娴膆aproxy.init啟動(dòng)腳本默認(rèn)會(huì)去/usr/sbin下找,當(dāng)然你也可以修改,不過比較麻煩。
cp /usr/local/haproxy/sbin/haproxy /usr/sbin/

- 復(fù)制haproxy腳本,到/etc/init.d下
cp /tmp/haproxy-1.7.9/examples/haproxy.init /etc/init.d/haproxy
chmod 755 /etc/init.d/haproxy

- 創(chuàng)建配置文件
mkdir /etc/haproxy
vi /etc/haproxy/haproxy.cfg

.conf  去掉下面兩列的注釋
$ModLoad imudp
$UDPServerRun 514
然后添加下面的行
local1.* /var/log/haproxy.log

重啟rsyslog
# service rsyslog restart
Shutting down system logger:                               [  OK  ]
Starting system logger:                                    [  OK  ]

5.啟動(dòng)haproxy
在管理server上添加vip
ifconfig eth0:0 192.168.1.208
service haproxy start

四.測試負(fù)載均衡
1.數(shù)據(jù)庫連接

點(diǎn)擊(此處)折疊或打開

  1. [root@mysql5 ~]# mysql -uroot -p -h 192.168.1.208 -P 3307 -e "select @@hostname"

  2. Enter password:

  3. +------------+

  4. | @@hostname |

  5. +------------+

  6. | mysql5.7   |

  7. +------------+

  8. [root@mysql5 ~]# mysql -uroot -p -h 192.168.1.208 -P 3307 -e "select @@hostname"

  9. Enter password:

  10. +------------+

  11. | @@hostname |

  12. +------------+

  13. | mysql5.7-2 |

  14. +------------+

  15. [root@mysql5 ~]# mysql -uroot -p -h 192.168.1.208 -P 3307 -e "select @@hostname"

  16. Enter password:

  17. +------------+

  18. | @@hostname |

  19. +------------+

  20. | mysql5.7-3 |

  21. +------------+

  22. [root@mysql5 ~]# mysql -uroot -p -h 192.168.1.208 -P 3307 -e "select @@hostname"

  23. Enter password:

  24. +------------+

  25. | @@hostname |

  26. +------------+

  27. | mysql5.7   |

  28. +------------+


2.登陸網(wǎng)頁
http://192.168.1.208:48800/admin-status
怎么實(shí)現(xiàn)slave集群負(fù)載均衡

感謝各位的閱讀,以上就是“怎么實(shí)現(xiàn)slave集群負(fù)載均衡”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么實(shí)現(xiàn)slave集群負(fù)載均衡這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI