我使用的是两个云服务器,如果读者使用的是虚拟机和本机,配置会简单很多。
关于云服务器安全组设置、防火墙端口等问题请参考文章:
使用华为云服务器进行项目部署(云服务器、防火墙配置)
条件:master 和 slave 机器的信息
公网IP地址:
master : 192.168.131.129
slave : 192.168.131.1
可以直接互相ping一下就可以了,然后保证两台机器的3306端口开放
我的机器条件是ubuntu22.06,mysql-server版本都是8以上
master配置
1.开启二进制日志
ubuntu系统中MySQL 配置文件 /etc/mysql/mysql.conf.d/mysqld.cnf
并且从文件描述中可以知道,在mysql文件夹下以cnf结尾的文件都是mysql的配置文件,可以互相覆盖。(不保证,可以自行探索)
需要配置的内容如下:
bind-address = 0.0.0.0
server-id = 1 # 唯一id
log_bin = /var/log/mysql/mysql-bin.log # 二进制日志位置
expire_logs_days = 7 # 过期时间7天
配置结束后记得重启服务:
sudo service mysql restart
2.创建一个用于主从库通信用的账号
CREATE USER 'mslave'@'192.168.131.1' IDENTIFIED BY '1qaz@WSX';
GRANT REPLICATION SLAVE ON *.* to 'mslave'@'192.168.131.1';
FLUSH PRIVILEGES;
3.获取binlog 的日志文件名和position
SHOW master STATUS;
slave配置
配置唯一的server-id
跟刚才一样,在配置文件 /etc/mysql/mysql.conf.d/mysqld.cnf
中修改:
bind-address = 0.0.0.0
server-id = 2 # 唯一id,这里从服务器的id一定不能是1
然后重启mysql 服务
sudo service mysql restart
使用master创建的账户读取主服务器binlog同步数据
CHANGE MASTER TO MASTER_HOST='192.168.131.129',
MASTER_PORT=3306,
MASTER_USER='mslave',
MASTER_PASSWORD='1qaz@WSX',
MASTER_LOG_FILE='mysql-bin.000002',
MASTER_LOG_POS=620;
在此之前记得先关闭(防止曾经启用过)从服务器的IO线程
stop slave; # 或者 STOP REPLICA IO_THREAD;
开启连接
start slave;
可以通过 show slave status\G;
命令查看主从复制状态。show processlist
查看master和salve相关线程的运行状态。
报错Authentication plugin ‘caching_sha2_password’ reported error: Authentication requires secure connection
我们进行连接后,查看 slave status状态:
mysql> show slave status\G;
*************************** 1. row ***************************Slave_IO_State: Connecting to sourceMaster_Host: xxx.x.xxx.xxMaster_User: mslaveMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql-bin.000002Read_Master_Log_Pos: 157Relay_Log_File: iZ8vb0epner5c8dcr749dxZ-relay-bin.000001Relay_Log_Pos: 4Relay_Master_Log_File: mysql-bin.000001Slave_IO_Running: ConnectingSlave_SQL_Running: YesReplicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0Last_Error: Skip_Counter: 0Exec_Master_Log_Pos: 876Relay_Log_Space: 157Until_Condition: NoneUntil_Log_File: Until_Log_Pos: 0Master_SSL_Allowed: NoMaster_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: NoLast_IO_Errno: 2061Last_IO_Error: Error connecting to source 'mslave@119.3.177.49:3306'. This was attempt 1/86400, with a delay of 60 seconds between attempts. Message: Authentication plugin 'caching_sha2_password' reported error: Authentication requires secure connection.Last_SQL_Errno: 0Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 0Master_UUID: Master_Info_File: mysql.slave_master_infoSQL_Delay: 0SQL_Remaining_Delay: NULLSlave_SQL_Running_State: Replica has read all relay log; waiting for more updatesMaster_Retry_Count: 86400Master_Bind: Last_IO_Error_Timestamp: 240526 16:08:06Last_SQL_Error_Timestamp: Master_SSL_Crl: Master_SSL_Crlpath: Retrieved_Gtid_Set: Executed_Gtid_Set: Auto_Position: 0Replicate_Rewrite_DB: Channel_Name: Master_TLS_Version: Master_public_key_path: Get_master_public_key: 0Network_Namespace:
1 row in set, 1 warning (0.00 sec)
显示报错Authentication plugin ‘caching_sha2_password’ reported error: Authentication requires secure connection。
表示 MySQL 服务器使用的认证插件 caching_sha2_password 需要安全连接(如 SSL/TLS)。这是 MySQL 8.0 及更高版本的默认认证插件。
解决方法一:使用SSL连接
启用 SSL 连接:
确保主从服务器都启用了 SSL,并在配置中添加 SSL 参数。
具体解决方法可以自行搜索
解决方法二:更改用户的认证插件
- 在主服务器上更改用户的认证插件:
ALTER USER 'mslave'@'xxx.xxx.xxx.xxx' IDENTIFIED WITH mysql_native_password BY '123456';
- 刷新权限
FLUSH PRIVILEGES;
- 在从服务器上重新配置主服务器:
STOP REPLICA IO_THREAD; //停用IO线程
CHANGE MASTER TO MASTER_HOST='xxx.x.xxx.xx',
MASTER_PORT=3306,
MASTER_USER='mslave',
MASTER_PASSWORD='123456',
MASTER_LOG_FILE='mysql-bin.000001',
MASTER_LOG_POS=1106;
START REPLICA;
即可解决问题。