当前位置:   article > 正文

MHA集群概述 、 部署MHA集群_cmha是什么意思

cmha是什么意思
集群知识点回顾:
	什么是集群? 多台服务器提供相同服务(网站服务  数据库服务)
	集群类型?    
	    LB(负载均衡集群) 集群中的所有服务器平均分摊客户端的多次连接访问 		    HA(高可用集群) 备用的服务器会自动接替故障的主服务器,继续提供服务,这个过程对客户端来说是透明的。
	    集群服务软件有那些? LVS   Haproxy  Nginx  Keepalived 
		

         MHA软件介绍
         集群拓扑结构		 
         MHA的工作过程
         集群环境准备
         集群环境准备
  1、配置三台数据库服务器  51 、 52 、53 
       彼此之间可以使用对方的系统root用户ssh免密登录。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

202 ssh-keygen
203 ssh-copy-id root@192.168.4.52
204 ssh-copy-id root@192.168.4.53
205 history
206 ssh root@192.168.4.52
207 ssh root@192.168.4.53

86 ssh-keygen
87 ssh-copy-id root@192.168.4.51
88 ssh-copy-id root@192.168.4.53
89 ssh root@192.168.4.51
90 ssh root@192.168.4.53

65 ssh-keygen
66 ssh-copy-id root@192.168.4.51
67 ssh-copy-id root@192.168.4.52
68 ssh root@192.168.4.51
69 ssh root@192.168.4.52
2、配置 57 主机 可以免密ssh连接3台数据库服务器 51 、 52 、53
47 ssh-keygen
48 ssh-copy-id root@192.168.4.51
49 ssh-copy-id root@192.168.4.52
50 ssh-copy-id root@192.168.4.53
51 ssh root@192.168.4.51
52 ssh root@192.168.4.52
53 ssh root@192.168.4.53

  3、分别在 51 、 52 、53 、 57 主机 安装mha目录下的所有 perl 软件
   	cd mha
	yum -y install perl-*.rpm

  4、配置 MySQL一主多从结构 ,具体步骤如下:
	 提示 确保3台服务器的数据是一致的 。
	 配置主数据库服务器 192.168.4.51
		启用binlog日志
		用户授权
		查看日志信息
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

[root@host51 mha]# vim /etc/my.cnf
[mysqld]
server_id=51
log_bin=master51
:wq
[root@host51 mha]# systemctl restart mysqld

[root@host51 mha]# mysql -uroot -p密码
mysql> grant replication slave on . to repluser@"%" identified by “123qqq…A”;

mysql> show master status;
±----------------±---------±-------------±-----------------±------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
±----------------±---------±-------------±-----------------±------------------+
| master51.000001 | 441 | | | |
±----------------±---------±-------------±-----------------±------------------+
1 row in set (0.01 sec)

mysql>

	 配置从数据库服务器 192.168.4.52 
  • 1

[root@host52 mha]# vim /etc/my.cnf
[mysqld]
server_id=52
:wq
[root@host52 mha]# systemctl restart mysqld

[root@host52 mha]# mysql -uroot -p密码
mysql> change master to master_host=“192.168.4.51” , master_user=“repluser” , master_password=“123qqq…A” , master_log_file=“master51.000001” , master_log_pos=441;
Query OK, 0 rows affected, 2 warnings (0.04 sec)

mysql> start slave;
Query OK, 0 rows affected (0.02 sec)

mysql> show slave status \G
Slave_IO_Running: Yes
Slave_SQL_Running: Yes

	 配置从数据库服务器 192.168.4.53 
  • 1

[root@host53 mha]# vim /etc/my.cnf
[mysqld]
server_id=53
:wq
[root@host53 mha]# systemctl restart mysqld

[root@host53 mha]# mysql -uroot -p密码
mysql> change master to master_host=“192.168.4.51” , master_user=“repluser” , master_password=“123qqq…A” , master_log_file=“master51.000001” , master_log_pos=441;
mysql> start slave;
mysql> show slaver status \G
Slave_IO_Running: Yes
Slave_SQL_Running: Yes

  配置管理主机192.168.4.57(重点) 具体如下:
1 安装MHA软件
  • 1
  • 2

[root@host57 ~]# cd mha
[root@host57 mha]# yum -y install mha4mysql-node-0.56-0.el6.noarch.rpm

]#tar -zxvf mha4mysql-manager-0.56.tar.gz
]#cd mha4mysql-manager-0.56
]#perl Makefile.PL
]# make
]# make install
2 创建并编辑管理服务的主配置文件
[root@host57 mha4mysql-manager-0.56]# mkdir /etc/mha
[root@host57 mha4mysql-manager-0.56]# cp samples/conf/app1.cnf /etc/mha/
[root@host57 mha4mysql-manager-0.56]# vim /etc/mha/app1.cnf
[root@host57 mha4mysql-manager-0.56]# vim /etc/mha/app1.cnf
[server default] //管理服务默认配置
manager_workdir=/etc/mha //工作目录
manager_log=/etc/mha/manager.log //日志文件
master_ip_failover_script=/etc/mha/master_ip_failover //故障切换脚本
ssh_user=root //访问ssh服务用户
ssh_port=22 //ssh服务端口
repl_user=repluser //数据同步授权用户
repl_password=123qqq…A //密码
user=root //监控用户
password=123qqq…A //密码

[server1] //指定第1台数据库服务器
hostname=192.168.4.51 //服务器ip地址
port=3306 //服务端口
candidate_master=1 //竞选主服务器

[serv

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/294769
推荐阅读
相关标签
  

闽ICP备14008679号