通过Atlas实现MySQL读写分离

数据库 MySQL
最近公司项目要求MySQL高可用,加上以前公司听过QiHoo360的Atlas,所以就尝试搭建了一个MySQL读写分离,并且高可用的。

通过Atlas实现MySQL读写分离

前期准备

  1. 准备4台机器,系统为CentOS release 6.6
  2. Ip分别为192.168.20.121、192.168.20.122、192.168.20.123、192.168.20.124
  3. 4台机器分别作为Atlas代理服务,master MySQL,slave MySQL 1,slave MySQL 2
  4. 下载QiHoo360的Atlas 地址

安装Atlas

  • 下载得到Atlas-XX.el6.x86_64.rpm安装文件
  • sudo rpm –i Atlas-XX.el6.x86_64.rpm安装
  • 安装在/usr/local/mysql-proxy
  • 安装目录分析
    • bin
      • 可执行文件
      • encrypt用来加密密码,后面会用到
      • mysql-proxy是MySQL自己的读写分离代理
      • mysql-proxyd操作Atlas
      • VERSION
    • conf
      • test.cnf配置文件
      • 一个文件为一个实例,实例名即文件名,启动需要带上这个实例名
    • lib依赖包
    • log记录日志
  • 启动命令:/usr/local/mysql-proxy/bin/mysql-proxyd [实例名] start
  • 停止命令:/usr/local/mysql-proxy/bin/mysql-proxyd [实例名] stop
  • 同理,restart为重启,status为查看状态
  • 配置文件解释

请查看官方文档

数据库配置

1.1台master2台slave,都要配置相同的用户名密码,且都要可以远程访问

2.分别进入3台服务器,创建相同的用户名密码,创建数据库test,设置权限

  1. CREATE USER 'test'@'%' IDENTIFIED BY 'test123'
  2. CREATE USER 'test'@'localhost' IDENTIFIED BY 'test123'
  3. grant all privileges on test.* to 'test'@'%' identified by 'test123'
  4. grant all privileges on test.* to 'test'@'localhost' identified by 'test123'
  5. flush privileges 

3.主从数据库配置

    1.配置master服务器

  • 找到MySQL配置文件my.cnf,一般在etc目录下
  • 修改配置文件 
  1. [mysqld] 
  2.  # 一些其他配置 
  3.  ...  
  4.  
  5.  #主从复制配置   
  6.  innodb_flush_log_at_trx_commit=1   
  7.  sync_binlog=1   
  8.  #需要备份的数据库 
  9.  binlog-do-db=test 
  10.  #不需要备份的数据库 
  11.  binlog-ignore-db=mysql   
  12.  
  13.  #启动二进制文件   
  14.  log-bin=mysql-bin   
  15.  
  16.  #服务器ID   
  17.  server-id=1   
  18.  
  19.  # Disabling symbolic-links is recommended to prevent assorted security risks   
  20.  symbolic-links=0  
  • 重启数据库service mysql restart
  • 进入数据库,配置主从复制的权限
  1. mysql -uroot -p123456 
  2.  grant replication slave on *.* to 'test'@'127.0.0.1' identified by 'test123' 
  • 查看主数据库信息,记住下面的File与Position的信息,它们是用来配置从数据库的关键信息。 
  1. mysql> show master status; 
  2.   +------------------+----------+--------------+------------------+ 
  3.   | File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | 
  4.   +------------------+----------+--------------+------------------+ 
  5.   | mysql-bin.000002 | 17620976 | test         | mysql            | 
  6.   +------------------+----------+--------------+------------------+ 
  7.   1 row in set (0.00 sec)  

    2.配置两台salve服务器

  • 找到配置文件my.cnf
  • 修改配置文件如下
  1. [mysqld] 
  2.   # 一些其他配置 
  3.   ...  
  4.  
  5.   # 几台服务器不能一样 
  6.   server-id=2 
  7.  
  8.   # Disabling symbolic-links is recommended to prevent assorted security risks 
  9.   symbolic-links=0  
  • 进入数据库,配置从数据库的信息,这里输入刚才记录下来的File与Position的信息,并且在从服务器上执行(执行的时候,#行不要复制进去):
  1. # master数据库的ip 
  2.  mysql> change master to master_host='192.168.20.122'
  3.        # master的用户名 
  4.             master_user='buck'
  5.            # 密码 
  6.             master_password='hello'
  7.            # 端口 
  8.             master_port=3306, 
  9.            # master数据库的`File ` 
  10.             master_log_file='mysql-bin.000002'
  11.            # master数据库的`Position` 
  12.             master_log_pos=17620976, 
  13.             master_connect_retry=10;  
  • 启动进程
  1. mysql> start slave; 
  2.  
  3. Query OK, 0 rows affected (0.00 sec)  
  • 检查主从复制状态,要看到下列Slave_IO_Running、Slave_SQL_Running的信息中,两个都是Yes,才说明主从连接正确,如果有一个是No,需要重新确定刚才记录的日志信息,停掉“stop slave”重新进行配置主从连接。
  1. mysql> show slave status \G; 
  2.   *************************** 1. row *************************** 
  3.                  Slave_IO_State: Waiting for master to send event 
  4.                     Master_Host: 192.168.246.134 
  5.                     Master_User: buck 
  6.                     Master_Port: 3306 
  7.                   Connect_Retry: 10 
  8.                 Master_Log_File: mysql-bin.000002 
  9.             Read_Master_Log_Pos: 17620976 
  10.                  Relay_Log_File: mysqld-relay-bin.000002 
  11.                   Relay_Log_Pos: 251 
  12.           Relay_Master_Log_File: mysql-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: 17620976 
  25.                 Relay_Log_Space: 407 
  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.   1 row in set (0.00 sec) 
  42.  
  43.   ERROR:  
  44.   No query specified  

Atlas配置

1.使用Atlas的加密工具对上面用户的密码进行加密

  1. /usr/local/mysql-proxy/bin/encrypt test123 
  2.  
  3. 29uENYYsKLo=  

2.配置atlas

  • 这是用来登录到Atlas的管理员的账号与密码,与之对应的是Atlas监听的管理接口IP和端口,也就是说需要设置管理员登录的端口,才能进入管理员界面,默认端口是2345,也可以指定IP登录,指定IP后,其他的IP无法访问管理员的命令界面。方便测试,我这里没有指定IP和端口登录。
  • 配置主数据的地址与从数据库的地址,这里配置的主数据库是122,从数据库是123、124
  1. #Atlas后端连接的MySQL主库的IP和端口,可设置多项,用逗号分隔 
  2.   proxy-backend-addresses = 192.168.20.122:3306 
  3.   #Atlas后端连接的MySQL从库的IP和端口,@后面的数字代表权重,用来作负载均衡,若省略则默认为1,可设置多项,用逗号分隔 
  4.   proxy-read-only-backend-addresses = 192.168.20.123:3306[@1](https://my.oschina.net/u/1198),192.168.20.124:3306@2 
  • 这个是用来配置MySQL的账户与密码的,就是上面创建的用户,用户名是test,密码是test123,刚刚使用Atlas提供的工具生成了对应的加密密码
  1. pwds = buck:RePBqJ+5gI4= 

3.启动Atlas

  1. [root[@localhost](https://my.oschina.net/u/570656) /usr/local/mysql-proxy/bin]# ./mysql-proxyd test start 
  2.  
  3. OK: MySQL-Proxy of test is started  

测试

1.进入atlas的管理界面

  1. [root[@localhost](https://my.oschina.net/u/570656) ~]#mysql -h127.0.0.1 -P2345 -uuser -ppwd 
  2.  Welcome to the MySQL monitor.  Commands end with ; or \g. 
  3.  Your MySQL connection id is 1 
  4.  Server version: 5.0.99-agent-admin 
  5.  
  6.  Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. 
  7.  
  8.  Oracle is a registered trademark of Oracle Corporation and/or its 
  9.  affiliates. Other names may be trademarks of their respective 
  10.  owners. 
  11.  
  12.  Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  13.  
  14.  mysql> select * from help; 
  15.  +----------------------------+---------------------------------------------------------+ 
  16.  | command                    | description                                             | 
  17.  +----------------------------+---------------------------------------------------------+ 
  18.  | SELECT * FROM help         | shows this help                                         | 
  19.  | SELECT * FROM backends     | lists the backends and their state                      | 
  20.  | SET OFFLINE $backend_id    | offline backend server, $backend_id is backend_ndx's id | 
  21.  | SET ONLINE $backend_id     | online backend server, ...                              | 
  22.  | ADD MASTER $backend        | example: "add master 127.0.0.1:3306", ...               | 
  23.  | ADD SLAVE $backend         | example: "add slave 127.0.0.1:3306", ...                | 
  24.  | REMOVE BACKEND $backend_id | example: "remove backend 1", ...                        | 
  25.  | SELECT * FROM clients      | lists the clients                                       | 
  26.  | ADD CLIENT $client         | example: "add client 192.168.1.2", ...                  | 
  27.  | REMOVE CLIENT $client      | example: "remove client 192.168.1.2", ...               | 
  28.  | SELECT * FROM pwds         | lists the pwds                                          | 
  29.  | ADD PWD $pwd               | example: "add pwd user:raw_password", ...               | 
  30.  | ADD ENPWD $pwd             | example: "add enpwd user:encrypted_password", ...       | 
  31.  | REMOVE PWD $pwd            | example: "remove pwd user", ...                         | 
  32.  | SAVE CONFIG                | save the backends to config file                        | 
  33.  | SELECT VERSION             | display the version of Atlas                            | 
  34.  +----------------------------+---------------------------------------------------------+ 
  35.  16 rows in set (0.00 sec) 
  36.  
  37.  mysql>   

2.使用工作接口来访问

  1. [root@localhost ~]#mysql -h127.0.0.1 -P1234 -utest -ptest123 
  2.  Welcome to the MySQL monitor.  Commands end with ; or \g. 
  3.  Your MySQL connection id is 34 
  4.  Server version: 5.0.81-log MySQL Community Server (GPL) 
  5.  
  6.  Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. 
  7.  
  8.  Oracle is a registered trademark of Oracle Corporation and/or its 
  9.  affiliates. Other names may be trademarks of their respective 
  10.  owners. 
  11.  
  12.  Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  13.  
  14.  mysql> show databases; 
  15.  +--------------------+ 
  16.  | Database           | 
  17.  +--------------------+ 
  18.  | information_schema | 
  19.  | mysql              | 
  20.  | performance_schema | 
  21.  | test               | 
  22.  +--------------------+ 
  23.  4 rows in set (0.00 sec) 
  24.  
  25.  mysql>   

使用可视化管理工具Navicat登录

使用用户名test、密码test123、端口1234、地址192.168.20.121正常登录。注意,这里登录的是atlas服务器,不再是任何一个MySQL服务器 

责任编辑:庞桂玉 来源: Crazy_Coder的博客
相关推荐

2017-05-25 10:22:13

NoSQL数据库主主备份

2009-05-04 09:13:52

PHPMySQL读写分离

2021-06-25 10:05:58

SpringBootMySQL数据库

2011-08-30 09:59:47

Mysql ProxyLUA

2021-09-08 10:23:08

读写分离Java数据库

2020-04-23 15:08:41

SpringBootMyCatJava

2020-03-24 14:16:18

ProxySQLMySQL数据库

2010-05-17 11:19:44

MySQL proxy

2022-04-25 08:03:57

MySQL中间件MyCat

2020-12-08 06:17:11

MycatMySQL分离

2011-08-30 12:49:59

Mysql ProxyLua分离

2020-11-24 09:56:12

数据源读写分离

2019-05-13 15:00:14

MySQLMyCat数据库

2019-09-30 09:19:54

Redis分离云数据库

2017-11-24 17:20:37

数据库数据仓库读写分离

2018-04-08 15:20:15

数据库MySQL主从复制

2021-03-08 08:16:42

MySQL分离架构

2011-08-30 13:08:55

Mysql ProxyLua分离

2018-10-16 16:45:05

数据库读写分离

2018-01-01 05:23:13

服务化读写分离架构
点赞
收藏

51CTO技术栈公众号