mysql replication master-slave

mater-slave replication

1# create replication user on master
//注意,on *.* 不能单独指定库及表,即test.*是不允许的
grant replication slave on *.* to [email protected] identified by 'slave';

#revoke  all on test.* from [email protected];
#delete from mysql.user where user = 'slave';

2# make  slave dbfile the same to master
you can copy the dbfile, also use the same script.

3# config the master and slave
make sure that the server-id is not the same!
master:

[mysqld]
log-bin="D:/mysql/log/binlog"
binlog-do-db=test
server-id=1

slave:

[mysqld]
server-id=2


4#start master

mysql> reset master;
Query OK, 0 rows affected (0.03 sec)

mysql>
mysql> show master status;
+---------------+----------+--------------+------------------+
| File          | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+---------------+----------+--------------+------------------+
| binlog.000001 |      106 | test         |                  |
+---------------+----------+--------------+------------------+
1 row in set (0.00 sec)

5#start slave

mysql> CHANGE MASTER TO
    -> MASTER_HOST='10.4.116.34',
    -> MASTER_USER='slave',
    -> MASTER_PASSWORD='slave',
    -> MASTER_LOG_FILE='binlog.000001',
    -> MASTER_LOG_POS=219;
Query OK, 0 rows affected (0.06 sec)

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

6#you can also use 'stop slave' to shutdown slave.

over :)

-------some case:
a#
091102 15:02:49 [ERROR] Error reading packet from server: 
Client requested master to start replication from impossible position ( server_errno=1236)

may be you write the wrong master_log_pos num.

b#
when stop slave, the master insert data into db,then start slave,the slave can also get the new data

c#
when you use  'reset master' on master 
you must config slave again by 'CHANGE MASTER TO...'

CHANGE MASTER TO
MASTER_HOST='10.4.116.34',
MASTER_USER='slave',
MASTER_PASSWORD='slave',
MASTER_LOG_FILE='binlog.000001',
MASTER_LOG_POS=219;

-----------
转自:http://blog.sina.com.cn/s/blog_4e424e2101000c1o.html

MySQL 支持单向、异步复制,复制过程中一个服务器充当主服务器,而一个或多个其它服务器充当从服务器。主服务器将更新写入二进制日志文件,并维护日志文件的一个 索引以跟踪日志循环。当一个从服务器连接到主服务器时,它通知主服务器从服务器在日志中读取的最后一次成功更新的位置。从服务器接收从那时起发生的任何更 新,然后封锁并等待主服务器通知下一次更新。

为什么使用主从复制?

1、主服务器/从服务器设置增加了健壮性。主服务器出现问题时,你可以切换到从服务器作为备份。

2、通过在主服务器和从服务器之间切分处理客户查询的负荷,可以得到更好的客户响应时间。但是不要同时在主从服务器上进行更新,这样可能引起冲突。

3、使用复制的另一个好处是可以使用一个从服务器执行备份,而不会干扰主服务器。在备份过程中主服务器可以继续处理更新。

MySQL 使用3个线程来执行复制功能(其中1个在主服务器上,另两个在从服务器上。当发出START SLAVE时,从服务器创建一个I/O线程,以连接主服务器并让主服务器发送二进制日志。主服务器创建一个线程将二进制日志中的内容发送到从服务器。从服 务器I/O线程读取主服务器Binlog Dump线程发送的内容并将该数据拷贝到从服务器数据目录中的本地文件中,即中继日志。第3个线程是SQL线程,从服务器使用此线程读取中继日志并执行日志中包含的更新。SHOW PROCESSLIST语句可以查询在主服务器上和从服务器上发生的关于复制的信息。

默认中继日志使用host_name-relay-bin.nnnnnn形式的文件名,其中host_name是从服务器主机名,nnnnnn是序列号。用连续序列号来创建连续中继日志文件,从000001开始。从服务器跟踪中继日志索引文件来识别目前正使用的中继日志。默认中继日志索引文件名为host_name-relay-bin.index。在默认情况,这些文件在从服务器的数据目录中被创建。中继日志与二进制日志的格式相同,并且可以用mysqlbinlog读取。当SQL线程执行完中继日志中的所有事件后,中继日志将会被自动删除。

从服务器在数据目录中另外创建两个状态文件–master.info和relay-log.info。状态文件保存在硬盘上,从服务器关闭时不会丢失。下次从服务器启动时,读取这些文件以确定它已经从主服务器读取了多少二进制日志,以及处理自己的中继日志的程度。

设置主从复制:
 

你可能感兴趣的:(sql,mysql,SQL Server,Blog)