mysql8集群
提要:
MySQL主从的配置,需要两台主机,现假设主机一 的IP地址为192.168.18.105,主机二的IP地址为192.168.18.106,105的主机设置为MySQL主机,106的主机设置为MySQL从属机。
在两台机器上安装同一版本的MySQL8,初始化以及初始密码和 /etc/my.cnf这个配置文件内所写的配置有关系.
配置:
一 :主服务器的配置(192.168.18.105)
1,vi /etc/my.cnf 在mysqld标签下添加如下字段:
server-id=106 ######主从节点设置的id需要是不同的即可
log_bin=master-bin
log_bin-index=master-bin.index
保存退出,执行命令,service mysql restart
2:进入数据库命令窗口创建从用户,设置密码。
CREATE USER 'slave'@'192.168.18.106' IDENTIFIED WITH mysql_native_password BY 'syc123';
创建一个名字为slave的用户,密码是syc123,该用户只可以在192.168.18.106登录。
允许slave远程登录update user set user.Host='%' where user.User='slave';
flush privileges;
3:赋予slave用户读取日志的权限
GRANT REPLICATION SLAVE ON *.* TO 'slave'@'192.168.18.106';
4:查看参数
show master status;
输出的结果为
±-----------------±---------±-------------±-----------------±------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
±-----------------±---------±-------------±-----------------±------------------+
| mysql-bin.000001 | 679 | | | |
±-----------------±---------±-------------±-----------------±------------------+
二:从服务器配置
1: vi /etc/my.cnf 在mysqld标签下添加如下字段:
server_id=105
relay-log-index=slave-relay-bin.index
relay-log=slave-relay-bin
保存退出,执行命令,service mysql restart
2:进入mysql命令窗口
stop slave;
CHANGE MASTER TO MASTER_HOST='192.168.18.105',MASTER_USER='slave',MASTER_PASSWORD='syc123',MASTER_LOG_FILE='mysql-bin.000001',MASTER_LOG_POS=679;
保存服务器所给的授权在本地,这一步极为重要,密码在服务器设置过,不要写错,第七步所查询的两个值分别填写进去.
3:START SLAVE;
SHOW SLAVE STATUS \G;
展示的结果是:
*************************** 1. row ***************************
Slave_IO_State: Connecting to master
Master_Host: 192.168.18.105
Master_User: slave
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 679
Relay_Log_File: localhost-relay-bin.000001
Relay_Log_Pos: 4
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Connecting Yes ###这里必须是yes,如果有错,可能会为no或者connecting
Slave_SQL_Running: Yes ###这里也必须是yes,别的不好使,这两项必须同时为yes ,算配置成功
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0 #有多少错误就显示几,0当然最好了。
Last_Error: #如果有什么错误,会在这显示,没有显示是好事情。
Skip_Counter: 0
Exec_Master_Log_Pos: 679
Relay_Log_Space: 156
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 2003
Last_IO_Error: error connecting to master ‘slave@192.168.18.105:3306’ - retry-time: 60 retries: 18 message: Can’t connect to MySQL server on ‘192.168.18.105’ (113)
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 0
Master_UUID:
Master_Info_File: mysql.slave_master_info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
Master_Retry_Count: 86400
Master_Bind:
Last_IO_Error_Timestamp: 201224 17:07:27
Last_SQL_Error_Timestamp:
Master_SSL_Crl:
Master_SSL_Crlpath:
Retrieved_Gtid_Set:
Executed_Gtid_Set:
Auto_Position: 0
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
Master_public_key_path:
Get_master_public_key: 0
Network_Namespace:
1 row in set, 1 warning (0.00 sec)
ERROR:
No query specified
Slave_IO_Running: connecting 关于我这个地方是connecting是因为网络问题,因为我这里是使用克隆机制搭建的两个虚拟机,后来经过了调整网络之后我的集群就通了。
不通时候的样子:
通了之后的样子:
4:设置只读模式
原因:由于集群模式下,要实现读写分离,写的功能在mysql主服务器上,从服务器集群允许只读模式,避免由于操作失误导致的同步问题,我们需要提前设置mysql从服务器的读写为readonly。
(1): 查看读写模式:show global variables like "%read_only%";
(2) 设置为只读模式readonly:set global read_only=1;
(3) 验证只读模式开启:show global variables like "%read_only%";
关于那两个yes的问题,如果第一个不是yes,也就是Slave_IO_Running: connecting 或者其他值,那么排查网络,看通不通。检查ip是否写对。并进入mysql 执行以下命令
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
这个命令的作用为同步在master主机上通过show master status;这个命令所查询出来的Position的值。
如果是server-id有冲突,执行以下命令
show variables like 'server_id';
set global server_id=2;
slave start;
以上就是本次安装mysql8和集群的方法,仅限参考!
以下是一些报错问题的解决方法:
1:进行Mysql主从复制执行 start slave时报ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository
原因:由于之前配置过主从备份已经执行过一次change master to命令,这次再次执行change master to,2次的pos值不一样。
解决方法:
1:# 登录mysql
mysql -uroot -p --socket=/usr/local/mysql/var/lib/mysql8/mysql8.sock
2: # 重置slave
reset slave;
3: # 执行同步 MASTER_LOG_FILE和MASTER_LOG_POS可以在mysql主服务上执行show master status查看相关参数。
CHANGE MASTER TO MASTER_HOST='IP地址', MASTER_USER='用户名',MASTER_PORT=端口, MASTER_PASSWORD='密码', MASTER_LOG_FILE='binlog',MASTER_LOG_POS=位置;
4: # 启动slave
start slave;
5: # 查看slave状态
show slave status\G;
2:连接mysql出现Access denied for user ‘slave’@’192.168.18.106’ (using password:YES)问题
原因:可能由于在主节点配置没有对slave用户进行远程访问权限的赋权,或salve密码错误。