溫馨提示×

溫馨提示×

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

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

MySQL Router介紹

發(fā)布時間:2020-08-08 07:44:28 來源:ITPUB博客 閱讀:187 作者:svoid 欄目:MySQL數(shù)據(jù)庫

MySQL Router介紹

MySQL Router是一個輕量級的中間件,提供了應(yīng)用程序與后端數(shù)據(jù)庫的透明路由,是mysql用來實現(xiàn)負載均衡和高可用功能。同時router也提供了使用fabric 高可用的方式。
MySQL Router介紹

安裝配置 MySQL Router

shell> tar zxvf mysql-router-2.0.2-linux-glibc2.17-x86-64bit.tar.gz
shell> mv mysql-router-2.0.2-linux-glibc2.17-x86-64bit /opt/mysqlrouter
shell> cd /opt/mysqlrouter
shell> mkdir config log

創(chuàng)建Router配置文件
shell> more conf/router.cnf
[DEFAULT]
logging_folder = /opt/mysqlrouter/log/

[logger]
level = INFO

[routing:read_only]
bind_address = 10.106.58.174
bind_port = 7001
connect_timeout = 3
max_connections = 1024
destinations = 10.106.58.176:3307,10.106.58.177:3307
mode = read-only

[routing:read_write]
bind_address = 10.106.58.174
bind_port = 7002
connect_timeout = 3
max_connections = 1024
destinations = 10.106.58.175:3307,10.106.58.176:3307
mode = read-write

升級gcc、glibc

升級gcc為4.8版本,升級glibc為2.14以上版本

查看系統(tǒng)GLIBCXX版本
shell> strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX

升級gcc,查看gcc4.8.5中GLIBCXX版本
shell> strings /usr/local/lib64/libstdc++.so.6.0.19 | grep GLIBCXX

升級支持GLIBCXX_3.4.15
shell> cp /usr/local/lib64/libstdc++.so.6.0.19 /usr/lib64/
shell> cd /usr/lib64/
shell> rm -f libstdc++.so.6
shell> ln -s libstdc++.so.6.0.19 libstdc++.so.6

查看系統(tǒng)glibc支持的版本:
shell> strings /lib64/libc.so.6  |grep GLIBC_
升級glibc支持2.14以上版本

運行mode介紹

mode = read-only時,客戶端請求將被循環(huán)分發(fā)給配置列表,當配置列表中服務(wù)器不可用,將會跳過該服務(wù)器,列表中下一個可用機器將處理請求,如列表沒有可用服務(wù)器,路由將失敗。

mode = read-write時,所有客戶端請求都會被列表中第一個可用服務(wù)器處理,當此服務(wù)器宕機時,列表中下一個可用機器才會處理客戶端請求,如列表沒有可用服務(wù)器,路由將失敗。第一個被成功連接的服務(wù)器信息將被保存在內(nèi)存中,重啟router后失效。

啟動router

1、啟動router前,需要確保配置文件中轉(zhuǎn)發(fā)的server可用。
2、運行router

shell> /opt/mysqlrouter/bin/mysqlrouter --config=/opt/mysqlrouter/config/router.cnf &
2016-02-24 06:10:35 INFO    [7f898af9e700] routing:read_write started: listening on 10.106.58.174:7002; read-write
2016-02-24 06:10:35 INFO    [7f898b99f700] routing:read_only started: listening on 10.106.58.174:7001; read-only

shell> netstat -an | grep 700
tcp        0      0 10.106.58.174:7001          0.0.0.0:*                   LISTEN
tcp        0      0 10.106.58.174:7002          0.0.0.0:*                   LISTEN

3、測試連接

shell> mysql -h 10.106.58.174 -P 7001 -u test -p -e "select @@hostname;"
shell> mysql -h 10.106.58.174 -P 7002 -u test -p -e "select @@hostname;"
參考:
http://mysqlhighavailability.com/setting-up-mysql-router/
向AI問一下細節(jié)

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

AI