在配置好apt源之后安装mysql
在所有的服务器上运行
sudo apt install mysql-server
配置MYSQL-master
更改主服务器server Id
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
**在[mysqld]**部分下添加以下行 。请注意,编号集需要是唯一的,不能在集群中的任何节点上重复使用。
server-id = 1
设置 log_bin 位置,这是所有复制信息所在的位置。在 master 上所做的所有更改都会写入此文件。所有从站都会从中复制数据。
一个完整的简单配置如下所示:
[mysqld]
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = /var/lib/mysql
log-error = /var/log/mysql/error.log
server-id = 1
log-bin = /var/log/mysql/mysql-bin.log
tmpdir = /tmp
binlog_format = ROW
max_binlog_size = 500M
sync_binlog = 1
expire-logs-days = 7
slow_query_log
注释掉 如下内容用来开放远程访问
#bind-address = 127.0.0.1
重新启动 mysql 服务以使更改生效:
sudo systemctl restart mysql
在主数据库服务器上创建复制用户
mysql -u root -p
CREATE USER rpl_user@192.168.196.128 WITH mysql_native_password IDENTIFIED BY '123456';
其中rpl_user
是从服务器用于访问主服务器的用户,@后面的内容是从服务器的地址
授予用户 REPLICATION SLAVE
权限:
grant replication slave on *.* to rpl_user@10.131.35.167;
提示信息是
Query OK, 0 rows affected (0.09 sec)
然后我们刷新这个权限
flush privileges;
现在确认一下这个用户的授权是否正确
show grants for rpl_user@192.168.196.128
如果出现如下内容代表授权是正常的
+------------------------------------------------------------------+
| Grants for replica_user@10.131.35.167 |
+------------------------------------------------------------------+
| GRANT REPLICATION SLAVE ON *.* TO `rpl_user`@`192.168.196.128` |
+------------------------------------------------------------------+
1 row in set (0.00 sec)
配置从MYSQL-slave服务器
在从服务器上安装 MySQL Server 8.0 的过程与主服务器类似。使用之前步骤来安装
安装完成后,通过编辑文件来配置从站:
vim /etc/mysql/mysql.conf.d/mysqld.cnf
log_bin = /var/log/mysql/mysql-bin.log
server-id = 2
read_only = 1
tmpdir = /tmp
binlog_format = ROW
max_binlog_size = 500M
sync_binlog = 1
expire-logs-days = 7
slow_query_log = 1
依然还是要注释掉
#bind-address = 127.0.0.1
- read_only = 1: 这会将从站设置为只读模式。只有具有 SUPER 权限的用户和复制从线程才能修改其上的数据。这确保了任何应用程序都不会意外修改从站而不是主站上的数据。-
- server-id = 2:这是唯一的服务器标识号。如果未设置“master-host”,则默认为 1 。
- log_bin = /var/log/mysql/mysql-bin.log:这将启用二进制日志记录。这是在复制配置中充当 MASTER 所必需的。如果您需要能够从最新备份进行时间点恢复,则还需要二进制日志。
sudo systemctl restart mysql
查看主服务器的日志信息
mysql> show master status\G
*************************** 1. row ***************************
File: mysql-bin.000002
Position: 155
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)
把主服务器的配置传入到slave服务器
记下当前主日志文件和位置。然后使用从 master status 命令获取的详细信息配置slave服务器:
mysql> CHANGE MASTER TO MASTER_HOST='192.168.196.128',
-> MASTER_USER='rpl_user',
-> MASTER_PASSWORD='123456',
-> MASTER_LOG_FILE='mysql-bin.000002',
-> MASTER_LOG_POS=155;
Query OK, 0 rows affected, 2 warnings (0.11 sec)
在slave服务器上开启 slave模式
mysql> start slave;
要检查Slave的运行状态,请使用:
mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 10.131.74.92
Master_User: rpl_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 550
Relay_Log_File: node-02-relay-bin.000002
Relay_Log_Pos: 717
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 550
Relay_Log_Space: 927
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: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
Master_UUID: d62cd5d2-784a-11e8-9768-eacea5a1be5e
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:
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
1 row in set (0.00 sec)
Slave IO和SQL应该指示运行状态:
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
如果 有报错,可以根据Slave_SQL_Running_State
这一行的信息来找对应的解决方案。