标签:mysql 数据库

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://8941355.blog.51cto.com/8931355/1712394

Centos7默认使用的是MariaDB,要想安装Mysql,需要先卸载掉MariaDB,防止冲突。

1:安装mysql数据库

规划:

主:server-1---10.64.5.167

从:server-2---10.64.5.170

从:server-3---10.64.5.172

数据目录:/var/lib/mysql

添加yum源:

1
2
#wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
#rpm -ivh mysql-community-release-el7-5.noarch.rpm

安装包:

1
#yum install mysql

mysql-community-common-5.6.27-2.el7.x86_64
mysql-community-libs-5.6.27-2.el7.x86_64
mysql-community-server-5.6.27-2.el7.x86_64

mysql-community-client-5.6.27-2.el7.x86_64

自启动:

1
#systemctl enable mysqld

2:配置mysql主库

主:server-1 10.64.5.167

(1)配置创建需要同步的数据库cattle。

1
2
3
4
#mysql
mysql>CREATEDATABASE IF NOT EXISTS cattle COLLATE='utf8_general_ci' CHARACTER SET='utf8';
mysql>GRANT ALL ON cattle.*TO 'cattle'@'%' IDENTIFIED BY 'cattle';
mysql>GRANT ALL ON cattle.*TO 'cattle'@'localhost' IDENTIFIED BY 'cattle';

(2)创建用户

1
2
3
mysql> GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO slave1@'10.64.5.170' IDENTIFIED BY '123456';
mysql> GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO slave2@'10.64.5.172' IDENTIFIED BY '123456';
mysql> flush  privileges;

(3)配置文件

1
2
3
4
5
6
#vim /etc/my.cnf     
添加
server-id = 1
log-bin=mysql-bin
log-slave-updates
binlog-do-db=cattle
binlog-ignore-db=mysql

重启mysql

(4)锁主库表

1
mysql> FLUSH TABLES WITH READ LOCK;

(4)显示主库信息

1
mysql> SHOW MASTER STATUS;

(5)另开一个终端,打包主库

1
2
#cd /var/lib/mysql
#tar czvf  cattle.tar.gz cattle

(6)解锁主库表

1
mysql> UNLOCK TABLES;

3:配置mysql从库

从:server-2 10.64.5.170

从:server-3 10.64.5.172

(1)将cattle.tar.gz 传输到slav机器

1
2
3
#mv cattle.tar.gz /var/lib/mysql/
#cd /var/lib/mysql/
#tar xf cattle.tar.gz

(2)查看修改cattle文件夹权限

1
#chown -R mysql:mysql cattle

(3)配置文件

1
2
3
4
5
6
7
8
#vim /etc/my.cnf
------------server-2 添加
server-id =2
log_bin  = mysql-bin
relay_log  = mysql-relay-bin
read-only=1
replicate-do-db=cattle
log-slave-updates=1
1
2
3
4
5
6
7
------------server-3 添加
server-id =3
log_bin  = mysql-bin
relay_log  = mysql-relay-bin
read-only=1
replicate-do-db=cattle
log-slave-updates=1

重启slave的mysql

(4)验证连接

从库server-2上测试连接主库

1
2
#mysql -h10.64.5.167 -uslave1 -p123456
mysql> show grants for slave1@10.64.5.170;

从库server-3上测试连接主库

1
2
# mysql -h10.64.5.167 -uslave2 -p123456
mysql> show grants for slave2@10.64.5.172;

(5)设置slave复制

查询master的position值

1
2
3
4
5
6
7
8
9
mysql> SHOW  MASTER STATUS\G;
*************************** 1. row ***************************
            File: mysql-bin.000001
        Position: 120
    Binlog_Do_DB: cattle
Binlog_Ignore_DB: mysql
1 row in set (0.00 sec)
ERROR: 
No query specified
1
2
3
4
5
6
server-2配置
mysql>CHANGE MASTER TO MASTER_HOST='10.64.5.167',         
-> MASTER_USER='slave1',         
-> MASTER_PASSWORD='123456',         
-> MASTER_LOG_FILE='mysql-bin.000001',         
-> MASTER_LOG_POS=120;     -------MASTER_LOG_POS为主库的Position
1
2
3
4
5
6
server-3配置
mysql>CHANGE MASTER TO MASTER_HOST='10.64.5.167',         
-> MASTER_USER='slave2',         
-> MASTER_PASSWORD='123456',        
-> MASTER_LOG_FILE='mysql-bin.000001',         
-> MASTER_LOG_POS=120;

(6)slave启动

1
2
mysql> START SLAVE;
Query OK, 0 rows affected, 1 warning (0.00 sec)

运行SHOW SLAVE STATUS查看输出结果:

主要查看

Slave_IO_Running: Yes

Slave_SQL_Running: Yes

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
mysql> SHOW SLAVE STATUS\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 10.64.5.167
                  Master_User: slave1
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 120
               Relay_Log_File: mysql-relay-bin.000002
                Relay_Log_Pos: 178995708
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: cattle
          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: 178995562
              Relay_Log_Space: 178995864
              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
1 row in set (0.00 sec)

验证master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
mysql> SHOW  PROCESSLIST\G;
*************************** 1. row ***************************
     Id: 14
   User: system user
   Host: 
     db: NULL
Command: Connect
   Time: 63424
  State: Connecting to master
   Info: NULL
*************************** 2. row ***************************
     Id: 15
   User: system user
   Host: 
     db: NULL
Command: Connect
   Time: 63424
  State: Slave has read all relay log; waiting for the slave I/O thread to update it
   Info: NULL
*************************** 3. row ***************************
     Id: 25
   User: slave1
   Host: 10.64.5.170:47139
     db: NULL
Command: Binlog Dump
   Time: 62967
  State: Master has sent all binlog to slave; waiting for binlog to be updated
   Info: NULL
*************************** 4. row ***************************
     Id: 244
   User: slave2
   Host: 10.64.5.172:45629
     db: NULL
Command: Binlog Dump
   Time: 53898
  State: Master has sent all binlog to slave; waiting for binlog to be updated
   Info: NULL
16 rows in set (0.00 sec)
ERROR: 
No query specified

4:验证主从同步

在主库server-1中创建一个表

1
2
3
4
5
6
7
8
9
10
11
12
mysql> USE cattle;
Database changed
mysql> CREATE TABLE `test` (`name`  varchar(10) NULL ,`old`  char(10) NULL );
Query OK, 0 rows affected (0.00 sec)
mysql> DESC test;     
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| name  | varchar(10) | YES  |     | NULL    |       |
| old   | char(10)    | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

从库查询是否有这个新表

1
2
3
4
5
6
7
8
9
10
mysql> USE cattle;
Database changed
mysql> DESC test;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| name  | varchar(10) | YES  |     | NULL    |       |
| old   | char(10)    | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
2 rows in set (0.01 sec)

至此,mysql的主从复制完成。

备注: 使用vmware镜像 ,两个mysql的 auto.cnf一样,会报错

进入/var/lib/mysql/ 删除 auto.cnf

报错查看 日志:

cat /var/log/mysql.log

Centos7 下配置mysql5.6主从复制实例(一主两从)的更多相关文章

  1. centos7下配置mysql5.7.24主从复制

    前置条件 准备两台服务器(可以是虚拟机),系统为centos7 此处演示的两台服务器:192.168.8.134.192.168.8.135 第一步:安装mysql5.7.24 先在两台服务器上安装m ...

  2. centos7下创建mysql5.6多实例

    一.mysql安装目录说明mysql5.6以二进制安装包安装在/data/mysql56下数据目录为/data/mysql56/data下配置文件为/etc/my.cnf下 二.多实例目录说明/mys ...

  3. (转) centos7下创建mysql5.6多实例

    原文:http://blog.csdn.net/a1010256340/article/details/77483504 一.mysql安装目录说明mysql5.6以二进制安装包安装在/data/my ...

  4. SVN CentOS7 下配置svn的安装及基础配置介绍

    CentOS7 下配置svn的安装及基础配置介绍 by:授客 QQ:1033553122 目录 一. 二. 三. 四. 五. 六. 七. 一.      实践环境 CentOS 7操作系统(CentO ...

  5. Linux - centos7 下 MySQL(mariadb) 和 主从复制

    目录 Linux - centos7 下 MySQL(mariadb) 和 主从复制 MySQL(mariadb) 安装MySQL(mariadb) 配置数据库的中文支持 在远程用 mysql客户端去 ...

  6. Eclipse 下配置MySql5.6的连接池,使用Tomcat7.0

    目前找到的最简单的配置方法.   1.首先在eclipse中创建一个Dynamical Web Application,在WebContent文件夹下的META-INF文件夹中创建新的名为conten ...

  7. Linux(CentOS7)下配置多个tomcat

    记录 Linux(CentOS7) 下配置多个 tomcat 的操作过程. 一.下载tomcat 前提:安装配置好jdk环境,未配置可参考Linux(CentOS7)下安装jdk1.8. 从 tomc ...

  8. Redis集群主从复制(一主两从)搭建配置教程【Windows环境】

    如何学会在合适的场景使用合适的技术方案,这值得思考. 由于本地环境的使用,所以搭建一个本地的Redis集群,本篇讲解Redis主从复制集群的搭建,使用的平台是Windows,搭建的思路和Linux上基 ...

  9. centos7 下zookeeper 部署 单机多实例模式

    centos7 下zookeeper 部署 本文参考https://www.linuxidc.com/Linux/2016-09/135052.htm 1.创建/usr/local/zookeeper ...

随机推荐

  1. MVC 使用entity framework 访问数据库 发布IIS

    1.  SQL SERVER 数据库内容 2. MVC工程 3. EF 参考 工程架构: 对应实体类: public class MvcUser { public int Id { get; set; ...

  2. MVC控制器常用方法返回类型

    控制器的常用方法 using System; using System.Collections.Generic; using System.Linq; using System.Web; using ...

  3. Salesforce.com Object Query Language (SOQL) 示例

    Salesforce 中的用户操作 打开按公司名称排序的供应商记录列表视图.SOQL 查询 SELECT CompanyName__c,ContactName__c FROM Suppliers__x ...

  4. WGS84坐标和UTM坐标的转换

    如题.做了一个Demo,主要是把最后面的参考资料1里面的脚本改成了C语言版本的. 代码: #ifndef __COORCONV_H__ #define __COORCONV_H__ #include ...

  5. 关于spring-servlet.xml cannot be opened because it does not exist的解决

    右键项目---->properties--->Java Build Path--->source--->Add Folder --->选择conf文件夹

  6. Unity的安装和破解

    网址:unity3d.com/cn/   unity的破解软件可以去unity圣典的网站上下载: 点击资源库,在资源库中找 下载过程中有时会提示需要对应的VS版本,忽略掉这个错误,并不需要最新的VS, ...

  7. 161215、MySQL 查看表结构简单命令

    一.简单描述表结构,字段类型desc tabl_name;显示表结构,字段类型,主键,是否为空等属性,但不显示外键.二.查询表中列的注释信息select * from information_sche ...

  8. T-SQL 的简单查询语句

    通配符: “_”: 代表匹配一个字符 “%”: 代表匹配多个字符: []:表示范围,可以包含多个数据 [^] 表示取反 “-“  表示范围 逻辑与 and 逻辑或 or  逻辑非 not 聚会函数 : ...

  9. shell脚本 空格

    1.定义变量时, =号的两边不可以留空格. eg: gender=femal----right gender =femal---–wrong gender= femal---–wrong 2.条件测试 ...

  10. 皇后(queen)

    皇后(queen)[题目描述] 众所不知,rly现在不会玩国际象棋.但是,作为一个OIer,rly当然做过八皇后问题.这里再啰嗦几句,皇后可以攻击到同行同列同对角线,在n*n的方格中摆n个皇后使其互不 ...