MySQL主从配置总结

mysql主从配置总结

1.[[email protected] ~]# cat /etc/redhat-release  //版本centos6.4
CentOS release 6.4 (Final)

2.[[email protected] ~]# virsh
Welcome to virsh, the virtualization interactive terminal.

Type:  ‘help‘ for help with commands
       ‘quit‘ to quit

3.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running //KVM虚拟机SN01为centos6.4操作系统作为主mysql IP:192.168.200.77
 13    SN02                           running //KVM虚拟机SN01为centos6.4操作系统作为从mysql IP: 192.168.200.78

4.virsh # console 11 //进入主mysql服务器

5.[[email protected] mysql]# rpm -q mysql-server //mysql版本为5.1.73版本
mysql-server-5.1.73-3.el6_5.x86_64

6.[[email protected] mysql]# cat /etc/my.cnf //添加server-id和log-bin=mysql-bin
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql

server-id=77 //添加server-id不能重复这个为ip最后一位作为id
log-bin=mysql-bin //启动bin日志

7.[[email protected] mysql]# mysql -uroot -p123456 //进入mysql数据库
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 28
Server version: 5.1.73-log Source distribution

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.

8.mysql>grant replication slave on *.* to ‘replication‘@‘192.168.200.%‘ identified by ‘123456‘;//一般不用root帐号,“%”表示所有客户端都可能连,只要帐号,密码正确,此处可用具体

客户端IP代替,如192.168.200.78,加强安全。

Query OK, 0 rows affected (0.00 sec)

9.mysql> show master status; //查看主mysql的状态记住file和position
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000001 |      187 |              |                  |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
执行完此步骤后不要再操作主服务器MYSQL,防止主服务器状态值变化

10.按ctrl+]返回kvm

11.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running
 13    SN02                           running

12.virsh # console 13 //进入SN02从mysql服务器
Connected to domain SN02
Escape character is ^]

13.[[email protected] mysql]# mysql -uroot -p123456 //进入从mysql数据库服务器
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.1.73-log Source distribution

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.

14.mysql> change master to master_host=‘192.168.200.77‘,master_user=‘replication‘,master_password=‘123456‘,
master_log_file=‘mysql-bin.000001‘,master_log_pos=187;//注意不要断开,“187”无单引号。

15.mysql> start slave; //启动服务器复制功能
Query OK, 0 rows affected, 1 warning (0.00 sec)

16.mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.200.77 //主服务器地址
                  Master_User: replication //授权帐户名,尽量避免使用root
                  Master_Port: 3306 //数据库端口,部分版本没有此行
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 187 //#同步读取二进制日志的位置,大于等于>=Exec_Master_Log_Pos
               Relay_Log_File: mysqld-relay-bin.000022
                Relay_Log_Pos: 251
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes  //此状态必须YES
            Slave_SQL_Running: Yes //此状态必须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: 187
              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_IO及Slave_SQL进程必须正常运行,即YES状态,否则都是错误的状态(如:其中一个NO均属错误)。

以上操作过程,主从服务器配置完成。

测试

17.mysql> show databases; //查看所有数据库
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
|              |
+--------------------+
3 rows in set (0.00 sec)

18.mysql>create database zhh; //创建数据库zhh

19.mysql> use zhh;//进入zhh数据库
Database changed

20.mysql> create table zhh(id int(3),name char(10));//创建zhh表
Query OK, 0 rows affected (0.06 sec)

21.mysql> insert into zhh value(01,‘zh888.blog‘);//插入01和zh888.blog值
Query OK, 1 row affected, 1 warning (0.00 sec)

22.mysql> select *from zhh;//查询zhh表的内容
+------+------------+
| id   | name       |
+------+------------+
|    1 | zh888.blog |
+------+------------+
1 row in set (0.00 sec)

23.ctrl+]切换到kvm

24.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running
 13    SN02                           running

25.virsh # console 13 //连接sn02从mysql服务器
Connected to domain SN02
Escape character is ^]

26.[[email protected] mysql]# mysql -uroot -p123456 //进入从mysql数据库

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.1.73-log Source distribution

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.

27.mysql> show databases;//查看所有mysql数据库

+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
| zhh                |
|         |
+--------------------+
4 rows in set (0.01 sec)

28.mysql> use zhh;//进入zhh数据库
Database changed

mysql> select *from zhh;//查询zhh表的内容
+------+------------+
| id   | name       |
+------+------------+
|    1 | zh888.blog |
+------+------------+
1 row in set (0.00 sec)

大功告成!

时间: 2024-10-10 07:04:33

MySQL主从配置总结的相关文章

Mysql主从配置,实现读写分离

大型网站为了软解大量的并发访问,除了在网站实现分布式负载均衡,远远不够.到了数据业务层.数据访问层,如果还是传统的数据结构,或者只是单单靠一台服务器扛,如此多的数据库连接操作,数据库必然会崩溃,数据丢失的话,后果更是 不堪设想.这时候,我们会考虑如何减少数据库的联接,一方面采用优秀的代码框架,进行代码的优化,采用优秀的数据缓存技术如:memcached,如果资金丰厚的话,必然会想到假设服务器群,来分担主数据库的压力.Ok切入今天微博主题,利用MySQL主从配置,实现读写分离,减轻数据库压力.这种

笔记13(FTP配置、tomcat配置、resin配置、MySQL主从配置)

FTP服务搭建与配置 FTP介绍 FTP是File Transfer Protocol(文件传输协议,简称文传协议)的英文简称,用于在Internet上控制文件的双向传输. FTP的主要作用就是让用户连接一个远程计算机(这些计算机上运行着FTP服务器程序),并查看远程计算机中的文件,然后把文件从远程计算机复制到本地计算机,或把本地计算机的文件传送到远程计算机. 小公司用的多,大企业不用FTP,因为不安全. 使用vsftpd搭建ftp服务 centos上自带vsftpd 安装:yum instal

centos MySQL主从配置 第二十八节课

centos  MySQL主从配置   第二十八节课 上半节课 下半节课 f

mysql主从配置&&基于keepalived的主备切换

mysql互为主从设置 && 主备切换配置 需求说明: 1.公司架构一直是一台单独的mysql在线上跑,虽然一直没有出现什么宕机事件,但是出于一个高可用的考虑,提出主从备份.主备切换的需求: 2.实现这个需求的前一段时间只是在做数据库备份的时候实现了主从热备,为了实现主备切换功能,继续操作上述需求: 实验环境: master1:10.1.156.3:3306 master2:10.1.156.5:3306 my.cnf配置文件关于主从这块的修改: master1: server-id =

解读mysql主从配置及其原理分析(Master-Slave)

在windows下配置的,后面会在Linux下配置进行测试,需要配置mysql数据库同步的朋友可以参考下. 1.在主数据库服务器为从服务器添加一个拥有权限访问主库的用户:GRANT REPLICATION SLAVE ON *.* TO ' test'@'%' IDENTIFIED BY 'test'; (%表示允许所有IP,可设置指定从服务器IP)添加用户后:可在从服务器上用mysql -h127.0.0.1 -utest -ptest; 来测试是否有权限访问主数据库 2.在主据库配置文件加上

mysql主从配置思路

记录一下 原文:http://www.rjfw.com.cn/qamain/prevView.action?id=40482017200000031 mysql主从配置(清晰的思路) mysql主从配置.鄙人是在如下环境测试的: 主数据库所在的操作系统:win7 主数据库的版本:5.0 主数据库的ip地址:192.168.1.111 从数据库所在的操作系统:linux 从数据的版本:5.0 从数据库的ip地址:192.168.1.112 介绍完了环境,就聊聊配置步骤: 1.确保主数据库与从数据库

Mysql主从配置+读写分离

Mysql主从配置+读写分离     MySQL从5.5版本开始,通过./configure进行编译配置方式已经被取消,取而代之的是cmake工具.因此,我们首先要在系统中源码编译安装cmake工具. 注:安装前须查看是否已经安装了如下依赖包,如果没有请安装. apt-get -y install gcc g++ libncurses5-dev ncurses-devel openssl   一.主库安装及配置 1.源码安装cmake # tar xf cmake-3.0.0.tar.gz #

Linux下mysql主从配置

mysql服务器的主从配置,这样可以实现读写分离,也可以在主库挂掉后从备用库中恢复需要两台机器,安装mysql,两台机器要在相通的局域网内主机A: 192.168.1.100从机B:192.168.1.101可以有多台从机1.先登录主机 Amysql>GRANT REPLICATION SLAVE ON *.* TO ‘backup’@’192.168.1.101‘ IDENTIFIED BY ‘123456’;赋予从机权限,有多台丛机,就执行多次2. 打开主机A的my.cnf,输入server

mysql主从配置(清晰的思路)

mysql主从配置.鄙人是在如下环境测试的: 主数据库所在的操作系统:win7 主数据库的版本:5.0 主数据库的ip地址:192.168.1.111 从数据库所在的操作系统:linux 主数据的版本:5.0 主数据库的ip地址:192.168.1.112 介绍完了环境,就聊聊配置步骤: 1.确保主数据库与从数据库一模一样. 例如:主数据库里的a的数据库里有b,c,d表,那从数据库里的就应该有一个模子刻出来的a的数据库和b,c,d表 2.在主数据库上创建同步账号. GRANT REPLICATI

mysql主从配置,读写分离

Mysql主从配置,实现读写分离 大型网站为了软解大量的并发访问,除了在网站实现分布式负载均衡,远远不够.到了数据业务层.数据访问层,如果还是传统的数据结构,或者只是单单靠一台服务器扛,如此多的数据库连接操作,数据库必然会崩溃,数据丢失的话,后果更是 不堪设想.这时候,我们会考虑如何减少数据库的联接,一方面采用优秀的代码框架,进行代码的优化,采用优秀的数据缓存技术如:memcached,如果资金丰厚的话,必然会想到假设服务器群,来分担主数据库的压力.Ok切入今天微博主题,利用MySQL主从配置,