MySQL建立双向主备复制服务器配置方法
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 106 Relay_Log_Space: 552 Until_Condition: No
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 106
Relay_Log_Space: 552
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.00 sec)
ERROR:
No query specified
如果需要重新启动slave 服务器,首先 执行 slave stop ,再执行 reset slave , 删除 MYSQL 数据库对应的my.cnf 文件中log_bin目录( /var/log/mysql/ )下的" mysql-bin."开头的所有文件,之后再执行slave start 命令 .
6.进行测试,主备是否正常工作,slave 启动时,两个服务器上都启动,启动后不要随意关闭再重启,例如在服务器A上启动后。
在服务器A数据中插入
INSERT INTO ddgl_qdlx ( qdlxmc, lxjc, qdlxbz) VALUES
('175a', '75a', '175a');
在服务器B中可以看到对应的记录 .
同样在服务器B中插入 :
INSERT INTO ddgl_qdlx (qdlx_id, qdlxmc, lxjc, qdlxbz) VALUES
( '176b', '76b', '176b') ;
在服务器A中可以看到对应的记录 .
测试OK .
[1] [2]
上一篇: mysql身份验证