`
neverforget
  • 浏览: 38494 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

MySQL数据库设置主从同步

 
阅读更多
主:
Enter password: *******
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.73-community-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| am-example         |
| crm                |
| masterdb           |
| mysql              |
| test               |
+--------------------+
6 rows in set (0.00 sec)

mysql> use masterdb;
Database changed
mysql> select * from mastertable;
Empty set (0.07 sec)

mysql> insert into mastertable('1','ford');
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near ''1','
ford')' at line 1
mysql> insert into mastertable(1,'ford');
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '1,'fo
rd')' at line 1
mysql> insert into mastertable values ('1','ford');
Query OK, 1 row affected (0.10 sec)

mysql> insert into mastertable(2,'Jon');
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '2,'Jo
n')' at line 1
mysql> insert into mastertable values ('2','Jon');
Query OK, 1 row affected (0.11 sec)

mysql> select * from mastertable;
+------+------+
| id   | name |
+------+------+
|    1 | ford |
|    2 | Jon  |
+------+------+
2 rows in set (0.00 sec)

mysql> select * from mastertable;
+------+------+
| id   | name |
+------+------+
|    1 | ford |
|    2 | Jon  |
+------+------+
2 rows in set (0.00 sec)

mysql> delete from mastertable where id=1;
Query OK, 1 row affected (0.13 sec)

mysql> delete from mastertable where id=2;
Query OK, 1 row affected (0.15 sec)

mysql>


从:
[root@localhost etc]# vi my.cnf
[root@localhost etc]# service mysql stop
Shutting down MySQL.... SUCCESS!
[root@localhost etc]# service mysql start
Starting MySQL.... SUCCESS!
[root@localhost etc]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.73-community-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> change master to master_host='192.168.2.39',master_user='slave_account',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=332;
Query OK, 0 rows affected (0.39 sec)

mysql> start slave;
Query OK, 0 rows affected (0.09 sec)

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.2.39
                  Master_User: slave_account
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 332
               Relay_Log_File: localhost-relay-bin.000002
                Relay_Log_Pos: 251
        Relay_Master_Log_File: mysql-bin.000001
             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: 332
              Relay_Log_Space: 410
              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

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
3 rows in set (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| masterdb           |
| mysql              |
| test               |
+--------------------+
4 rows in set (0.00 sec)

mysql> use masterdb;
Database changed
mysql> show tables;
+--------------------+
| Tables_in_masterdb |
+--------------------+
| mastertable        |
+--------------------+
1 row in set (0.00 sec)

mysql> select * from mastertable;
Empty set (0.06 sec)

mysql> select * from mastertable;
+------+------+
| id   | name |
+------+------+
|    1 | ford |
|    2 | Jon  |
+------+------+
2 rows in set (0.00 sec)

mysql> delete from mastertable where id=1;
Query OK, 1 row affected (0.05 sec)

mysql> select * from mastertable;
+------+------+
| id   | name |
+------+------+
|    2 | Jon  |
+------+------+
1 row in set (0.00 sec)

mysql> select * from mastertable;
+------+------+
| id   | name |
+------+------+
|    2 | Jon  |
+------+------+
1 row in set (0.00 sec)

mysql> select * from mastertable;
Empty set (0.00 sec)

mysql> select * from mastertable;
Empty set (0.00 sec)



最后一定要记得打开从的只读:
主从复制中容易出现的问题:

1.限制从服务器只读,保证主从数据一致。

    show global variables like ‘%read%‘

    更改slave的全局服务器变量read_only为on

    set global read_only on

    从节点上授权只读 set global read_only = 1;如果永久有效更改mysql的my.ini 或my.cnf,在[mysql] 中设置read_only = 1

2.保证主从复制时的事务安全

    如果mysql比较繁忙它会把二进制日志缓存在内存中,不繁忙时才会把他写到磁盘中,前提就是mysql对二进制日志事件数据会缓冲。在master上设置如下参数 set global  sync_binlog = 1 事物一提交,就必须同步二进制日志,这样会降低性能,但是数据非常重要的情况下。

------------------------------------------------------------
MYSQL主从同步是目前使用比较广泛的数据库架构,技术比较成熟,配置也不复杂,特别是对于负载比较大的网站,主从同步能够有效缓解数据库读写的压力。

MySQL主从同步的机制
MYSQL主从同步是在MySQL主从复制(Master-Slave Replication)基础上实现的,通过设置在Master MySQL上的binlog(使其处于打开状态),Slave MySQL上通过一个I/O线程从Master MySQL上读取binlog,然后传输到Slave MySQL的中继日志中,然后Slave MySQL的SQL线程从中继日志中读取中继日志,然后应用到Slave MySQL的数据库中。这样实现了主从数据同步功能。




MySQL主从同步的作用
1、可以作为一种备份机制,相当于热备份
2、可以用来做读写分离,均衡数据库负载
MySQL主从同步的步骤
一、准备操作
1、主从数据库版本一致,建议版本5.5以上
2、主从数据库数据一致
二、主数据库master修改

1、修改MySQL配置:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
# 日志文件名 
log-bin = mysql-bin 
 
# 主数据库端ID号 
server-id = 1 
2、重启mysql,创建用于同步的账户:
[plain] view plaincopy在CODE上查看代码片派生到我的代码片
# 创建slave帐号slave_account,密码123456 
mysql>grant replication slave on *.* to 'slave_account'@'%' identified by '123456'; 
 
# 更新数据库权限 
mysql>flush privileges; 
3、查询master的状态

[plain] view plaincopy
mysql> show master status; 
+------------------+----------+--------------+------------------+ 
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | 
+------------------+----------+--------------+------------------+ 
| mysql-bin.000009 |      196 |              |                  | 
+------------------+----------+--------------+------------------+ 
1 row in set 
注:执行完这个步骤后不要再操作主数据库了,防止主数据库状态值变化
三、从数据库slave修改
1、修改MySQL配置:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
# 从数据库端ID号 
server-id =2 
2、执行同步命令
[plain] view plaincopy在CODE上查看代码片派生到我的代码片
# 执行同步命令,设置主数据库ip,同步帐号密码,同步位置 
mysql>change master to master_host='192.168.1.2',master_user='slave_account',master_password='123456',master_log_file='mysql-bin.000009',master_log_pos=196; 
 
# 开启同步功能 
mysql>start slave; 
3、检查从数据库状态:

[plain] view plaincopy
mysql> show slave status\G; 
*************************** 1. row *************************** 
               Slave_IO_State: Waiting for master to send event 
                  Master_Host: 192.168.1.2 
                  Master_User: slave_account 
                  Master_Port: 3306 
                Connect_Retry: 60 
              Master_Log_File: mysql-bin.000009 
          Read_Master_Log_Pos: 196 
               Relay_Log_File: vicky-relay-bin.000002 
                Relay_Log_Pos: 253 
        Relay_Master_Log_File: mysql-bin.000009 
             Slave_IO_Running: Yes 
            Slave_SQL_Running: Yes 
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
          ... 
注:Slave_IO_Running及Slave_SQL_Running进程必须正常运行,即YES状态,否则说明同步失败。
到这里,主从数据库设置工作已经完成,自己可以新建数据库和表,插入和修改数据,测试一下是否成功

四、其他可能用到的相关参数

1、master端:
[plain] view plaincopy在CODE上查看代码片派生到我的代码片
# 不同步哪些数据库 
binlog-ignore-db = mysql 
binlog-ignore-db = test 
binlog-ignore-db = information_schema 
 
# 只同步哪些数据库,除此之外,其他不同步 
binlog-do-db = game 
 
# 日志保留时间 
expire_logs_days = 10 
 
# 控制binlog的写入频率。每执行多少次事务写入一次 
# 这个参数性能消耗很大,但可减小MySQL崩溃造成的损失 
sync_binlog = 5 
 
# 日志格式,建议mixed 
# statement 保存SQL语句 
# row 保存影响记录数据 
# mixed 前面两种的结合 
binlog_format = mixed 
2、slave端:

[plain] view plaincopy
# 停止主从同步 
mysql> stop slave; 
 
# 连接断开时,重新连接超时时间 
mysql> change master to master_connect_retry=50; 
 
# 开启主从同步 
mysql> start slave; 
以上连接超时设置,类似方式可用于设置主数据库ip,同步帐号密码,同步位置


  • 大小: 50.3 KB
  • 大小: 59.2 KB
分享到:
评论

相关推荐

    MySQL数据库的主从同步备份在windows下实现

    MySQL数据库的主从同步备份是一种常见的高可用性和数据冗余策略,它允许在一个主服务器(Master)上执行写操作,而这些更改会自动复制到一个或多个从服务器(Slave)。在Windows环境下,这个过程需要一些特定的配置...

    详解MySQL数据库设置主从同步的方法

    MySQL数据库的主从同步是一种常见的高可用性和负载均衡策略,尤其在处理大量读写操作的系统中,它能有效地分摊数据库压力,提高系统性能。本文将详细介绍如何配置MySQL数据库的主从同步。 首先,理解MySQL主从同步...

    mysql数据库主从同步

    MySQL 数据库主从同步配置 MySQL 数据库主从同步是指将主数据库的数据实时同步到从数据库中,以实现数据的高可用性和负载均衡。下面是 MySQL 数据库主从同步的配置步骤和相关知识点: 一、主数据库 master 配置 1...

    MySQL数据库主从同步服务器部署

    MySQL数据库主从同步服务器部署 MySQL数据库主从同步服务器部署是指将一个 MySQL 数据库分成主服务器和从服务器,以提高数据库的可用性和性能。本文档将详细介绍 MySQL 数据库主从同步服务器的部署过程,包括配置...

    MySQL数据库的主从同步配置与读写分离

    MySQL数据库的主从同步配置与读写分离是数据库高可用性和负载均衡的一种常见方案,它能够提高系统的稳定性和数据安全性,同时提升数据处理能力。在本文中,我们将深入探讨这一主题,了解如何设置主从复制以及如何...

    MySQL数据库主从配置

    MySQL 数据库主从配置 MySQL 数据库主从配置是指在 MySQL 数据库中实现主从复制的...MySQL 数据库主从配置是实现数据库实时同步的重要步骤,该过程需要在主服务器和从服务器上进行配置,以确保数据的安全和一致性。

    MYSQL数据库主从复制高可用技术改造环境部署方案

    ### MySQL数据库主从复制高可用技术改造环境部署方案 #### 安装部署DRBD DRBD(Distributed Replicated Block Device)是一种分布式复制块设备,主要用于实现数据在两台或多台服务器之间的实时同步,以此来构建高...

    windows环境下mysql数据库的主从同步备份步骤(单向同步)

    windows下mysql双向同步备份实现方法以下的文章主要讲述的是在windows环境下实现MySQL数据库的主从同步备份的正确操作方案,我在一些相关的网站看见关于windows环境下实现MySQL数据库的主从同步备份的操作步骤描述,...

    Linux下MySQL数据库的主从同步复制配置

    Linux下MySQL数据库的主从同步复制配置 在本文中,我们将主要介绍Linux下MySQL数据库的主从同步配置,该配置可以实现读写分离,缓解数据库的压力,提高数据的读写速度和效率。 一、主服务器相关配置 1. 创建同步...

    mysql数据库主从数据同步配置文档

    mysql数据库主从数据同步, vim /etc/mysql/my.cnf server-id = 1 log_bin = /var/log/mysql/mysql-bin.log binlog-do-db=proxy 注:binlog-do-db提供数据同步服务的数据库 #忽略的数据库复制 binlog-ignore-db=...

    linux下指定mysql数据库服务器主从同步的配置实例

    一、 概念: ① 数据库同步 (主从同步 — 主数据库写的同时 往从服务器写数据)② 数据库同步 (主主同步 — 两台数据库服务器互相写数据) 二、 举例数据库服务器(A) 主数据库 IP:192.168.1.134数据库服务器...

    Mysql+Mycat实现数据库主从同步与读写分离.docx

    【MySQL+Mycat 实现数据库主从同步与读写分离】 MySQL 主从同步是一种常见的数据库高可用解决方案,它通过复制技术将数据从主数据库实时地、无损地同步到从数据库,确保在主库发生故障时可以从从库接管服务,从而...

    MySQL主从同步配置过程.docx

    MySQL 主从同步配置是指将 MySQL 数据库的数据从一台服务器(主服务器)同步到另一台服务器(从服务器)的过程。这种配置可以实现数据的高可用性和灾难恢复,提高系统的整体性能和安全性。 二、 主从同步配置的基本...

    mysql主从同步解决方案及优化

    在数据库领域,MySQL作为一款广泛使用的开源关系型数据库系统,其主从同步功能对于提高数据的可靠性、保证数据的高可用性以及负载均衡具有重要作用。淘宝资深工程师丁奇在2009年的分享中详细介绍了MySQL主从同步的...

    MySQL不停机不锁表主从同步与读写分离配置

    6. **设置主从同步**: - **获取binlog文件位置**: ```bash cat /data/backup/2016-06-27_23-59-56/xtrabackup_binlog_info ``` - **配置主从同步**:根据获得的信息,在从服务器上执行如下命令: ```sql ...

    Mysql5.1.7以上版本主从同步配置方法

    在IT领域,数据库的主从同步是确保数据冗余与高可用性的重要手段之一。本文将深入探讨Mysql 5.1.7及以上版本的主从双向同步配置方法,为数据库管理员提供一份详尽的指南。 ### Mysql主从同步基本原理 在Mysql的...

    mysql主从同步和一台服务器两个mysql

    MySQL 主从同步是指将一个 MySQL 服务器的数据实时地复制到另一个 MySQL 服务器上,以提高数据库的高可用性和灾难恢复能力。在本文中,我们将详细介绍如何在一台服务器上配置两个 MySQL 服务器,以实现主从同步。 ...

Global site tag (gtag.js) - Google Analytics