mysql主从复制的步骤

64次阅读
没有评论

共计 2327 个字符,预计需要花费 6 分钟才能阅读完成。

这篇文章主要讲解了“mysql 主从复制的步骤”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着丸趣 TV 小编的思路慢慢深入,一起来研究和学习“mysql 主从复制的步骤”吧!

  一、环境描述
主服务器 ip:192.168.0.2
从数据库服务器 ip:192.168.0.3
主从服务器上的已全新安装,但并为投入生产,所以无数据产生。
二、主从复制配置
 1. 主数据库服务器 master 配置
 (1)为从服务器 slave 授权
 mysql grant replication slave on *.* to  identified by 123
 (2)查看 master 状态
 mysql show master status;
 +——————+———-+————–+——————+
 | File  | Position | Binlog_Do_DB | Binlog_Ignore_DB |
 +——————+———-+————–+——————+
 | mysql-bin.000003 |  400 |  |  |
 +——————+———-+————–+——————+
 1 row in set (0.00 sec)
  记下 file 和 position,一会配置 slave 会用到。(file 为 mysql 日志的文件,position 为日志的线索号,从服务器将从这么位置开始复制) 
 2. 从数据库服务器 slave 配置
 (1)修改 slave 的 server id,避免和其他 my 的重复
 vi /etc/my.cnf
 server-id = 2
  (2) 执行 sql 语句的同步
 mysql change master to master_host=192.168.0.2, master_user=slave, master_password=123, master_log_file=mysql-bin.000003, master_log_pos=400;
 (3) 启动 slave 的同步功能
 mysql start slave;
 (4)查看 slave 状态
mysql show slave status G;
*************************** 1. row ***************************
  Slave_IO_State: Waiting for master to send event
  Master_Host: 192.168.0.2
  Master_User: slave
  Master_Port: 3306
  Connect_Retry: 60
  Master_Log_File: mysql-bin.000003
  Read_Master_Log_Pos: 548
  Relay_Log_File: mysql-relay-bin.000002
  Relay_Log_Pos: 399
  Relay_Master_Log_File: mysql-bin.000003
  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: 548
  Relay_Log_Space: 554
  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:
1 row in set (0.02 sec)
 
ERROR:
No query specified
  注:Slave_IO_Running: Yes
  Slave_SQL_Running: Yes 当 IO 和 SQL 这两个进程都是 Yes,master 和 slave 就可以进行主从复制了。
三、验证测试
 1. 在 master 上创建一个测试表(root 用户)
 mysql use test
 mysql create table tbs (id int);
 mysql insert into tbs values(1);
 2. 在 slave 上查看是否复制成功(root 用户)
 mysql use test
 mysql show tables;
 
 mysql select * from tbs;
  +——+
  | id  |
  +——+
  |  1 |
  +——+
  1 row in set (0.00 sec)
显示复制成功!

感谢各位的阅读,以上就是“mysql 主从复制的步骤”的内容了,经过本文的学习后,相信大家对 mysql 主从复制的步骤这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是丸趣 TV,丸趣 TV 小编将为大家推送更多相关知识点的文章,欢迎关注!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-01发表,共计2327字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)