是一套支持双主故障切换和双主日常管理的脚本程序。MMM使用Perl语言开发,主要用来监控和管理MySQL
Master-Master (双主)复制,虽然叫做双主复制,但是业务上同一时刻只允许对一个主进行写入,另一台备选主上提供部分读服务,以力速在主主切换时备选主的预热,可以说MM这套脚本程序一方面实现了故障切换的功能,另一方面其内部附加的工具脚本也可以实现多个Slave的read负载均衡。
MM提供了自动和手动两种方式移除一组服务器中复制延迟较高的服务器的虚拟ip,同时它还可以备份数据,实现两节点之间的数据同步等。由于MM无法完全保证数据的一致性,所以MM适用于对数据的一致性要求不是很高,但是又想最大程度地保证业务可用性的场景。
MMM是一套灵活的脚本程序,基于perl实现,用来对mysql replication进行监控和故障迁移,并能管理MySQL Master-Master复制的配置。
mmm_mon:监控进程,负责所有的监控工作,决定和处理所有节点角色活动。此脚本需要在监管机上运行
mmm_agent:运行在每个MysQL服务器上的代理进程,完成监控的探针工作和执行简单的远端服务设置。此脚本需要在被监管机上运行
mmm_control:一个简单的脚本,提供管理mmm_mon进程的命令。
mysql-mm的监管端会提供多个虚拟IP (VIP),包括一个可写VIP,多个可读VIP,通过监管的管理,这些IP会绑定在可用MySQL之上,当某一台MySQL宕机时,监管会将vIP迁移至其他MySQL.
在整个监管过程中,需要在MySQL中添加相关授权用户,以便让MySQL可以支持监控主机的维护。授权的用户包括一个mmm_monitor用户和一个mmm_agent用户。
vim /etc/my.cnf ...... [mysqld] user = mysql basedir = /usr/local/mysql datadir = /usr/local/mysql/data port = 3306 character_set_server=utf8 pid-file = /usr/local/mysql/mysqld.pid socket = /usr/local/mysql/mysql.sock server-id = 1 #每台 Mysql 主机的 server-id 不能相同 log-error=/usr/local/mysql/data/mysql_error.log #错误日志 general_log=ON #通用查询日志 general_log_file=/usr/local/mysql/data/mysql_general.log slow_query_log=ON #慢查询日志 slow_query_log_file=mysql_slow_query.log long_query_time=5 binlog-ignore-db=mysql,information_schema #不需要同步的库名 log_bin=mysql_bin #开启二进制日志用于主从数据复制 log_slave_updates=true #允许slave从master复制数据时可以写入到自己的二进制日志 sync_binlog=1 #"双1设置",MySQL 在每写一次二进制日志时都会同步到磁盘中去 innodb_flush_log_at_trx_commit=1 #"双1设置",每次事务提交时MySQL都会把缓存的数据写入日志文件,并且刷到磁盘中去 auto_increment_increment=2 #自增字段一次递增多少 auto_increment_offset=1 #自增字段的起始值
scp /etc/my.cnf root@192.168.73.20:/etc/ scp /etc/my.cnf root@192.168.73.30:/etc/ scp /etc/my.cnf root@192.168.73.40:/etc/ systemctl restart mysqld
在两台主服务器上都执行授予从的权限,从服务器上不需要执行
grant replication slave on *.* to 'replication'@'192.168.73.%' identified by '12345';
show master status;
change master to master_host='192.168.73.20',master_user='replication',master_password='12345',master_log_file='mysql_bin.000001',master_log_pos=460; start slave; show slave status\G;
change master to master_host='192.168.73.10',master_user='replication',master_password='12345',master_log_file='mysql_bin.000001',master_log_pos=460; start slave; show slave status\G;
change master to master_host='192.168.73.10',master_user='replication',master_password='12345',master_log_file='mysql_bin.000001',master_log_pos=460; start slave; show slave status\G;
create database db_test;
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo yum -y install epel-release yum -y install mysql-mmm*
cd /etc/mysql-mmm/ vim mmm_common.conf …… <host default> cluster_interface ens33 …… replication_user replication replication_password 12345 agent_user mmm_agent agent_password 12345 <host db1> ip 192.168.73.10 mode master peer db2 </host> <host db2> ip 192.168.73.20 mode master peer db1 </host> <host db3> ip 192.168.73.30 mode slave </host> <host db4> ip 192.168.73.40 mode slave </host> <role writer> hosts db1, db2 ips 192.168.73.100 mode exclusive #只有一个 host 可以进行写操作模式 </role> <role reader> hosts db3, db4 ips 192.168.73.101, 192.168.73.102 mode balanced #多个 slave 主机可以进行读操作模式 </role>
scp mmm_common.conf root@192.168.73.20:/etc/mysql-mmm/ scp mmm_common.conf root@192.168.73.30:/etc/mysql-mmm/ scp mmm_common.conf root@192.168.73.40:/etc/mysql-mmm/ scp mmm_common.conf root@192.168.73.50:/etc/mysql-mmm/
vim /etc/mysql-mmm/mmm_agent.conf include mmm_common.conf this db1 #根据不同的主机分别修改为 db1,db2,db3,db4
vim /etc/mysql-mmm/mmm_mon.conf include mmm_common.conf <monitor> ..... ping_ips 192.168.73.10,192.168.73.20,192.168.73.30,192.168.73.40 #指定所有数据库服务器的 IP auto_set_online 10 #指定自动上线时间 </monitor> <host default> monitor_user mmm_monitor #指定 mmm_monitor 的用户名 monitor_password 12345 #指定 mmm_monitor 的密码 </host>
grant super, replication client, process on *.* to 'mmm_agent'@'192.168.73.%' identified by '12345';
grant replication client on *.* to 'mmm_monitor'@'192.168.73.%' identified by '12345'; flush privileges;
systemctl start mysql-mmm-agent.service systemctl enable mysql-mmm-agent.service
systemctl start mysql-mmm-monitor.service
mmm_control show db1(192.168.73.10) master/ONLINE. Roles: writer(192.168.73.100) db2(192.168.73.20) master/ONLINE. Roles: db3(192.168.73.30) slave/ONLINE. Roles: reader(192.168.73.101) db4(192.168.73.40) slave/ONLINE. Roles: reader(192.168.73.102)
mmm_control checks all
mmm_control move_role writer db2
mmm_control move_role writer db1
mmm_control show db1(192.168.73.10) master/HARD_OFFLINE. Roles: db2(192.168.73.20) master/ONLINE. Roles: writer(192.168.229.100)
mmm_control show
grant all on *.* to 'root'@'192.168.73.50' identified by '12345'; flush privileges;
yum install -y mariadb-server mariadb systemctl start mariadb.service mysql -ulili -p -h 192.168.73.100
create database testdba;