当前位置:   article > 正文

MySQL集群 双主架构(配置命令)_mysql 双主

mysql 双主

CSDN 成就一亿技术人!

今天刚开学第一天给大家分享一期:MySQL集群双主的配置需求和命令

CSDN 成就一亿技术人!

神秘泣男子主页:作者首页    <————

MySQL专栏      :MySQL数据库专栏<————

MySQL双主是一种高可用性和容错性的数据库架构,有两个主数据库(Master)。这种架构允许在其中一个主数据库出现故障时,系统仍然能够正常运行,并且在故障恢复后能够继续正常工作。

工作原理:

  • 两台 MySQL 实例都可读写,互为主备。
  • 默认情况下,只有一台主节点(称为主写节点)负责数据的写入,另一台主节点(称为备写节点)处于备用状态。
  • 主写节点将变更记录(binlog)发送给备写节点,备写节点应用变更记录,保证数据一致性。
  • 当主写节点发生故障时,备写节点可以被提升为主写节点,继续提供服务。

优点:

  • 提高读写性能: 两台主节点可以同时处理读写请求,从而提高数据库的整体性能。
  • 增强高可用性: 如果一台主节点发生故障,另一台主节点可以继续提供服务,从而保证数据库的高可用性。

缺点:

  • 数据一致性风险: 双主架构需要保证两台主节点的数据一致性,这可能会带来一些风险,例如数据冲突等。
  • 配置和管理复杂度: 双主架构的配置和管理比单主架构复杂,需要 DBA 具备一定的专业知识。

应用场景:

  • 对读写性能要求较高的应用
  • 对高可用性要求较高的应用

常见实现方式:

  • 双向复制: 两台主节点之间通过 binlog 进行双向复制,保证数据一致性。
  • 仲裁器: 引入一个仲裁器协调两台主节点之间的写入操作,保证数据一致性。

双主配置命令

1.master1配置

1.修改配置文件

配置完成后重启

  1. vim /etc/my.cnf
  2. log_bin
  3. server-id=1
  4. gtid_mode=on
  5. enforce_gtid_consistency=on
  6. binlog_format=row
  7. log_bin:
  8. 此配置项启用二进制日志,它是 MySQL 复制所必需的。
  9. server-id:
  10. 此配置项用于为 MySQL 服务器分配唯一的标识符。在复制设置中,每个服务器都应该有一个唯一的 server-id。在您的配置中,服务器的ID被设置为1。确保每个服务器都有一个唯一的ID。
  11. gtid_mode:
  12. 此配置项启用 GTID 模式。GTID 是用于在不同 MySQL 实例之间唯一标识事务的机制。启用 GTID 有助于简化复制配置和处理。
  13. enforce_gtid_consistency:
  14. 此配置项强制执行 GTID 一致性。这确保在执行复制时事务的一致性。
  15. binlog_format=row
  16. 此配置项指定二进制日志的格式。在您的配置中,设置为row,表示以行为基础记录二进制日志。这是推荐的设置,因为它提供更好的灵活性和一致性。
2.创建授权用户
  1. grant replication slave on *.* to 'rep'@'192.168.180.%' identified by 'Sunshao-123';
  2. rep是用户名称
  3. @后边跟上服务器网段


2.master2配置

1.修改配置文件

配置完成后重启

  1. log_bin
  2. server-id=2
  3. #GTID:
  4. gtid_mode=on #开启gtid模式
  5. enforce_gtid_consistency=on
  6. binlog_format=row

1.检测创建账户是否可用
mysql -h 目标服务器 -u创建用户 -p'密码'

master2 访问 master1

2.设置主服务器
  1. 4.***设置主服务器** 指向master1
  2. mysql> change master to
  3. -> master_host='另外一个主服务器的IP',
  4. -> master_user='rep',
  5. -> master_password='Sunshao-123',
  6. -> master_auto_position=1;
  7. Query OK, 0 rows affected, 2 warnings (0.01 sec)

mysql> start slave;        开启复制
Query OK, 0 rows affected (0.00 sec)

3.查看线程状态
  1. mysql> show slave status \G;
  2. ************************** 1. row ***************************
  3. Slave_IO_State: Waiting for master to send event
  4. Master_Host: 192.168.180.180
  5. Master_User: rep
  6. Master_Port: 3306
  7. Connect_Retry: 60
  8. Master_Log_File: master1-bin.000002
  9. Read_Master_Log_Pos: 1720
  10. Relay_Log_File: master2-relay-bin.000004
  11. Relay_Log_Pos: 966
  12. Relay_Master_Log_File: master1-bin.000002
  13. Slave_IO_Running: Yes
  14. Slave_SQL_Running: Yes
  15. Replicate_Do_DB:
  16. Replicate_Ignore_DB:
  17. Replicate_Do_Table:
  18. Replicate_Ignore_Table:
  19. Replicate_Wild_Do_Table:
  20. Replicate_Wild_Ignore_Table:
  21. Last_Errno: 0
  22. Last_Error:
  23. Skip_Counter: 0
  24. Exec_Master_Log_Pos: 1720
  25. Relay_Log_Space: 2452
  26. Until_Condition: None
  27. Until_Log_File:
  28. Until_Log_Pos: 0
  29. Master_SSL_Allowed: No
  30. Master_SSL_CA_File:
  31. Master_SSL_CA_Path:
  32. Master_SSL_Cert:
  33. Master_SSL_Cipher:
  34. Master_SSL_Key:
  35. Seconds_Behind_Master: 0
  36. Master_SSL_Verify_Server_Cert: No
  37. Last_IO_Errno: 0
  38. Last_IO_Error:
  39. Last_SQL_Errno: 0
  40. Last_SQL_Error:
  41. Replicate_Ignore_Server_Ids:
  42. Master_Server_Id: 1
  43. Master_UUID: 0a562cb8-bf46-11ee-b233-000c2950269e
  44. Master_Info_File: /var/lib/mysql/master.info
  45. SQL_Delay: 0
  46. SQL_Remaining_Delay: NULL
  47. Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
  48. Master_Retry_Count: 86400
  49. Master_Bind:
  50. Last_IO_Error_Timestamp:
  51. Last_SQL_Error_Timestamp:
  52. Master_SSL_Crl:
  53. Master_SSL_Crlpath:
  54. Retrieved_Gtid_Set: 0a562cb8-bf46-11ee-b233-000c2950269e:1-9
  55. Executed_Gtid_Set: 0a562cb8-bf46-11ee-b233-000c2950269e:1-9,
  56. 235616ef-b8fc-11ee-86c1-000c2952be42:1-2
  57. Auto_Position: 1
  58. Replicate_Rewrite_DB:
  59. Channel_Name:
  60. Master_TLS_Version:
  61. 1 row in set (0.00 sec)

都为yes表示成功

接下来返回master1继续配置

  1. .***设置主服务器** 指向master2
  2. mysql> change master to
  3. -> master_host='另外一个主服务器的IP',
  4. -> master_user='rep',
  5. -> master_password='Sunshao-123',
  6. -> master_auto_position=1;
  7. Query OK, 0 rows affected, 2 warnings (0.01 sec)
  1. mysql> start slave;
  2. Query OK, 0 rows affected (0.00 sec)
  3. mysql> show slave status \G;
  4. *************************** 1. row ***************************
  5. Slave_IO_State: Waiting for master to send event
  6. Master_Host: 192.168.180.181
  7. Master_User: rep
  8. Master_Port: 3306
  9. Connect_Retry: 60
  10. Master_Log_File: master2-bin.000002
  11. Read_Master_Log_Pos: 194
  12. Relay_Log_File: master1-relay-bin.000003
  13. Relay_Log_Pos: 411
  14. Relay_Master_Log_File: master2-bin.000002
  15. Slave_IO_Running: Yes
  16. Slave_SQL_Running: Yes
  17. Replicate_Do_DB:
  18. Replicate_Ignore_DB:
  19. Replicate_Do_Table:
  20. Replicate_Ignore_Table:
  21. Replicate_Wild_Do_Table:
  22. Replicate_Wild_Ignore_Table:
  23. Last_Errno: 0
  24. Last_Error:
  25. Skip_Counter: 0
  26. Exec_Master_Log_Pos: 194
  27. Relay_Log_Space: 1233
  28. Until_Condition: None
  29. Until_Log_File:
  30. Until_Log_Pos: 0
  31. Master_SSL_Allowed: No
  32. Master_SSL_CA_File:
  33. Master_SSL_CA_Path:
  34. Master_SSL_Cert:
  35. Master_SSL_Cipher:
  36. Master_SSL_Key:
  37. Seconds_Behind_Master: 0
  38. Master_SSL_Verify_Server_Cert: No
  39. Last_IO_Errno: 0
  40. Last_IO_Error:
  41. Last_SQL_Errno: 0
  42. Last_SQL_Error:
  43. Replicate_Ignore_Server_Ids:
  44. Master_Server_Id: 2
  45. Master_UUID: 235616ef-b8fc-11ee-86c1-000c2952be42
  46. Master_Info_File: /var/lib/mysql/master.info
  47. SQL_Delay: 0
  48. SQL_Remaining_Delay: NULL
  49. Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
  50. Master_Retry_Count: 86400
  51. Master_Bind:
  52. Last_IO_Error_Timestamp:
  53. Last_SQL_Error_Timestamp:
  54. Master_SSL_Crl:
  55. Master_SSL_Crlpath:
  56. Retrieved_Gtid_Set: 235616ef-b8fc-11ee-86c1-000c2952be42:1-2
  57. Executed_Gtid_Set: 0a562cb8-bf46-11ee-b233-000c2950269e:1-10,
  58. 235616ef-b8fc-11ee-86c1-000c2952be42:1-2
  59. Auto_Position: 1
  60. Replicate_Rewrite_DB:
  61. Channel_Name:
  62. Master_TLS_Version:
  63. 1 row in set (0.00 sec)

测试

master1

master2同步master1

  1. master1上
  2. mysql> insert into t1 values(666666);
  3. Query OK, 1 row affected (0.01 sec)
  4. mysql> select * from test.t1;
  5. +--------+
  6. | id |
  7. +--------+
  8. | 11 |
  9. | 22 |
  10. | 22 |
  11. | 22 |
  12. | 666666 |
  13. +--------+
  14. 5 rows in set (0.00 sec)
  15. mysql>
  16. master2上
  17. mysql> select * from test.t1;
  18. +--------+
  19. | id |
  20. +--------+
  21. | 11 |
  22. | 22 |
  23. | 22 |
  24. | 22 |
  25. | 666666 |
  26. +--------+
  27. 5 rows in set (0.01 sec)

master2

master1同步master2

  1. master2上
  2. mysql> insert into test.t1 values(77777);
  3. Query OK, 1 row affected (0.01 sec)
  4. mysql> select * from test.t1;
  5. +--------+
  6. | id |
  7. +--------+
  8. | 11 |
  9. | 22 |
  10. | 22 |
  11. | 22 |
  12. | 666666 |
  13. | 77777 |
  14. +--------+
  15. 6 rows in set (0.00 sec)
  16. mysql>
  17. master1上
  18. mysql> select * from test.t1;
  19. +--------+
  20. | id |
  21. +--------+
  22. | 11 |
  23. | 22 |
  24. | 22 |
  25. | 22 |
  26. | 666666 |
  27. | 77777 |
  28. +--------+
  29. 6 rows in set (0.00 sec)
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/1019359
推荐阅读
相关标签
  

闽ICP备14008679号