利用mysql-proxy进行mysql数据库的读写分离

时间:2023-03-08 22:59:57
利用mysql-proxy进行mysql数据库的读写分离

实验系统:CentOS 6.6_x86_64

实验前提:防火墙和selinux都关闭

实验说明:本实验共有4台主机,IP分配如拓扑

实验软件:mariadb-10.0.20  mysql-proxy-0.8.5-linux-el6-x86-64bit

下载地址:http://pan.baidu.com/s/1i3F5Pop

实验拓扑:

    利用mysql-proxy进行mysql数据库的读写分离

一、准备工作:

  1.将主机名称改为如下所示:

    利用mysql-proxy进行mysql数据库的读写分离

  2.将hosts文件添加如下内容:

    利用mysql-proxy进行mysql数据库的读写分离

  3.master、slave1和slave2安装mariadb:

tar xf mariadb-10.0.-linux-x86_64.tar.gz  -C /usr/local/
cd /usr/local/
ln -sv mariadb-10.0.-linux-x86_64 mysql
useradd -r mysql
mkdir -pv /mydata/data
chown -R mysql.mysql /mydata/data/
cd mysql/
chown -R root.mysql .
scripts/mysql_install_db --user=mysql --datadir=/mydata/data/
cp support-files/my-large.cnf /etc/my.cnf
cp support-files/mysql.server /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig mysqld on

二、配置主从复制

  1.master上配置my.cnf:

[mysqld]
server-id =
datadir = /mydata/data
log-bin = /mydata/data/master-bin
binlog_format = ROW
sync_binlog = 1 //确保每次事务提交之前都能将二进制日志同步磁盘上

  2.slave1上配置my.cnf:

[mysqld]
#log-bin=mysql-bin
#binlog_format=mixed
server-id =
datadir = /mydata/data
relay_log = /mydata/data/relay-log
read_only =
sync_master_info = 1 //及时同步master文件
sync_relay_log = 1 //及时同步relay-log文件
sync_relay_log_info = 1 //及时同步relay-log-info文件

  3.slave2上配置my.cnf:

[mysqld]
#log-bin=mysql-bin
#binlog_format=mixed
server-id =
datadir = /mydata/data
relay_log = /mydata/data/relay-log
read_only =
sync_master_info =
sync_relay_log =
sync_relay_log_info =

  4.在master上创建复制用户:

service mysqld start
/usr/local/mysql/bin/mysql
------------------------------------------->
GRANT REPLICATION SLAVE,REPLICATION CLIENT ON *.* TO 'slave'@'192.168.19.%' IDENTIFIED BY '';
FLUSH PRIVILEGES;

  5.在master上查看二进制日志位置:

SHOW MASTER LOGS;

    利用mysql-proxy进行mysql数据库的读写分离

  6.两台slave上操作:

CHANGE MASTER TO MASTER_HOST='master',MASTER_USER='slave',MASTER_PASSWORD='',MASTER_LOG_FILE='master-bin.000001',MASTER_LOG_POS=;
START SLAVE;
SHOW SLAVE STATUS\G

    利用mysql-proxy进行mysql数据库的读写分离

三、安装mysql-proxy

  1.此实验中19.79为mysql-proxy服务器,所以软件安装在此主机上:

tar xf mysql-proxy-0.8.-linux-el6-x86-64bit.tar.gz -C /usr/local/
cd /usr/local/
ln -sv mysql-proxy-0.8.-linux-el6-x86-64bit mysql-proxy
useradd -r mysql-proxy

  2.提供服务脚本:

vim /etc/init.d/mysql-proxy
--------------------------------------------------------->
#!/bin/bash
#
# mysql-proxy This script starts and stops the mysql-proxy daemon
#
# chkconfig: -
# processname: mysql-proxy
# description: mysql-proxy is a proxy daemon for mysql # Source function library.
. /etc/rc.d/init.d/functions prog="/usr/local/mysql-proxy/bin/mysql-proxy" # Source networking configuration.
if [ -f /etc/sysconfig/network ]; then
. /etc/sysconfig/network
fi # Check that networking is up.
[ ${NETWORKING} = "no" ] && exit # Set default mysql-proxy configuration.
ADMIN_USER="admin"
ADMIN_PASSWD="admin"
ADMIN_LUA_SCRIPT="/usr/local/mysql-proxy/share/doc/mysql-proxy/admin.lua"
PROXY_OPTIONS="--daemon"
PROXY_PID=/var/run/mysql-proxy.pid
PROXY_USER="mysql-proxy" # Source mysql-proxy configuration.
if [ -f /etc/sysconfig/mysql-proxy ]; then
. /etc/sysconfig/mysql-proxy
fi RETVAL= start() {
echo -n $"Starting $prog: "
daemon $prog $PROXY_OPTIONS --pid-file=$PROXY_PID --proxy-address="$PROXY_ADDRESS" --user=$PROXY_USER --admin-username="$ADMIN_USER" --admin-lua-script="$ADMIN_LUA_SCRIPT" --admin-password="$ADMIN_PASSWORD"
RETVAL=$?
echo
if [ $RETVAL -eq ]; then
touch /var/lock/subsys/mysql-proxy
fi
} stop() {
echo -n $"Stopping $prog: "
killproc -p $PROXY_PID -d $prog
RETVAL=$?
echo
if [ $RETVAL -eq ]; then
rm -f /var/lock/subsys/mysql-proxy
rm -f $PROXY_PID
fi
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
condrestart|try-restart)
if status -p $PROXY_PIDFILE $prog >&/dev/null; then
stop
start
fi
;;
status)
status -p $PROXY_PID $prog
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status|condrestart|try-restart}"
RETVAL=
;;
esac exit $RETVAL
<---------------------------------------------------------
chmod +x /etc/init.d/mysql-proxy
chkconfig --add mysql-proxy

  3.为服务脚本提供配置文件:

vim /etc/sysconfig/mysql-proxy
--------------------------------------------------------->
# Options for mysql-proxy
ADMIN_USER="admin"
ADMIN_PASSWORD="admin"
ADMIN_ADDRESS=""
ADMIN_LUA_SCRIPT="/usr/local/mysql-proxy/share/doc/mysql-proxy/admin.lua"
PROXY_ADDRESS=""
PROXY_USER="mysql-proxy"
PROXY_OPTIONS="--daemon --log-level=info --log-use-syslog --plugins=proxy --plugins=admin --proxy-backend-addresses=192.168.19.66:3306 --proxy-read-only-backend-addresses=192.168.19.74:3306
--proxy-read-only-backend-addresses=192.168.19.76: --proxy-lua-script=/usr/local/mysql-proxy/share/doc/mysql-proxy/rw-splitting.lua" //--daemon:以守护进程模式启动mysql-proxy
//--proxy-backend-addresses:后端可读写的mysql服务器的地址和端口
//--proxy-read-only-backend-addresses:后端只读mysql服务器的地址和端口
//--proxy-lua-script:完成mysql代理功能的Lua脚本

  4.提供admin.lua文件:

vim /usr/local/mysql-proxy/share/doc/mysql-proxy/admin.lua
------------------------------------------------------------------------------>
--[[ $%BEGINLICENSE%$
Copyright (c) , , Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; version of the
License. This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., Franklin St, Fifth Floor, Boston, MA
- USA $%ENDLICENSE%$ --]] function set_error(errmsg)
proxy.response = {
type = proxy.MYSQLD_PACKET_ERR,
errmsg = errmsg or "error"
}
end function read_query(packet)
if packet:byte() ~= proxy.COM_QUERY then
set_error("[admin] we only handle text-based queries (COM_QUERY)")
return proxy.PROXY_SEND_RESULT
end local query = packet:sub() local rows = { }
local fields = { } if query:lower() == "select * from backends" then
fields = {
{ name = "backend_ndx",
type = proxy.MYSQL_TYPE_LONG }, { name = "address",
type = proxy.MYSQL_TYPE_STRING },
{ name = "state",
type = proxy.MYSQL_TYPE_STRING },
{ name = "type",
type = proxy.MYSQL_TYPE_STRING },
{ name = "uuid",
type = proxy.MYSQL_TYPE_STRING },
{ name = "connected_clients",
type = proxy.MYSQL_TYPE_LONG },
} for i = , #proxy.global.backends do
local states = {
"unknown",
"up",
"down"
}
local types = {
"unknown",
"rw",
"ro"
}
local b = proxy.global.backends[i] rows[#rows + ] = {
i,
b.dst.name, -- configured backend address
states[b.state + ], -- the C-id is pushed down starting at
types[b.type + ], -- the C-id is pushed down starting at
b.uuid, -- the MySQL Server's UUID if it is managed
b.connected_clients -- currently connected clients
}
end
elseif query:lower() == "select * from help" then
fields = {
{ name = "command",
type = proxy.MYSQL_TYPE_STRING },
{ name = "description",
type = proxy.MYSQL_TYPE_STRING },
}
rows[#rows + ] = { "SELECT * FROM help", "shows this help" }
rows[#rows + ] = { "SELECT * FROM backends", "lists the backends and their state" }
else
set_error("use 'SELECT * FROM help' to see the supported commands")
return proxy.PROXY_SEND_RESULT
end proxy.response = {
type = proxy.MYSQLD_PACKET_OK,
resultset = {
fields = fields,
rows = rows
}
}
return proxy.PROXY_SEND_RESULT
end

  5.为了使实验结果更明显,编辑rw-splitting.lua文件中的其中2个数值:

vim /usr/local/mysql-proxy/share/doc/mysql-proxy/rw-splitting.lua
--------------------------------------------------------------------------->
if not proxy.global.config.rwsplit then
proxy.global.config.rwsplit = {
min_idle_connections = , //默认为4
max_idle_connections = ,    //默认为8 is_debug = false
}
end
//mysql-proxy会检测客户端连接,当连接没有超过min_idle_connections预设值时, 不会进行读写分离, 即查询操作会发生到Master上。

5.启动mysql-proxy:

service mysql-proxy start
ss -tnlp //查看端口

    利用mysql-proxy进行mysql数据库的读写分离

  6.连接测试:

yum -y install mysql                               //如果没有mysql客户端的话执行此步
mysql -uadmin -padmin -h192.168.19. --port=
------------------------------------------------------------>
SELECT * FROM backends;
+-------------+--------------------+---------+------+------+-------------------+
| backend_ndx | address | state | type | uuid | connected_clients |
+-------------+--------------------+---------+------+------+-------------------+
| | 192.168.19.66: | unknown | rw | NULL | |
| | 192.168.19.74: | unknown | ro | NULL | |
| | 192.168.19.76: | unknown | ro | NULL | |
+-------------+--------------------+---------+------+------+-------------------+

四、读写分离测试:

  1.在master上创建测试用户:

GRANT ALL ON *.* TO 'jason'@'192.168.19.%' IDENTIFIED BY '';
FLUSH PRIVILEGES;

  2.分别在三台mariadb服务器上抓包:

    master:

tcpdump -i eth0 -nn -XX ip dst 192.168.19.66 and tcp dst port       //目标是19.66并且端口是3306

    slave1:

tcpdump -i eth0 -nn -XX ip dst 192.168.19.74 and tcp dst port 

    slave2:

tcpdump -i eth0 -nn -XX ip dst 192.168.19.76 and tcp dst port 

  3.mysql-proxy上进行数据库操作:

mysql -ujason -p123456 -h192.168.19.
------------------------------------------------->
CREATE DATABASE hello;
USE mysql;
SELECT * FROM user; //可以用额外的主机多执行几次

    在master上的抓包信息:

    利用mysql-proxy进行mysql数据库的读写分离

    在slave上的抓包信息:

    利用mysql-proxy进行mysql数据库的读写分离

    利用mysql-proxy进行mysql数据库的读写分离

  4.查看状态,在proxy上操作,可以看到状态全部为up:

mysql -uadmin -padmin -h192.168.19. --port=
------------------------------------------------------------->
SELECT * FROM backends;
+-------------+--------------------+-------+------+------+-------------------+
| backend_ndx | address | state | type | uuid | connected_clients |
+-------------+--------------------+-------+------+------+-------------------+
| | 192.168.19.66: | up | rw | NULL | |
| | 192.168.19.74: | up | ro | NULL | |
| | 192.168.19.76: | up | ro | NULL | |
+-------------+--------------------+-------+------+------+-------------------+

五、拓展实验

  1.在proxy上安装httpd和php:

yum install httpd php php-mysql
service httpd start

  2.让httpd可以支持index.php首页,然后放入wordpress页面文件,创建wordpress数据库并安装:

    利用mysql-proxy进行mysql数据库的读写分离

  3.安装完后修改wordpress的配置文件,将master地址改为proxy的:

vim /var/www/html/wp-config.php

    利用mysql-proxy进行mysql数据库的读写分离

  4.访问测试并抓包:

    master:

    利用mysql-proxy进行mysql数据库的读写分离

    slave:

    利用mysql-proxy进行mysql数据库的读写分离

    利用mysql-proxy进行mysql数据库的读写分离

    至此,读写分离实验演示完毕,谢谢!如有问题,请联系我,QQ:82800452