安装mysql过程略。

服务器环境

操作系统:RHEL 6.4 x64

主服务器IP:192.168.1.251

从服务器IP:192.168.1.252

一:配置主服务器master

# vi /etc/my.cnf

log-bin=mysql.bin

server-id=251

添加上面两行,第一行是用于开启二进制日志记录,第二行的server-id唯一,这里最好设置为服务器的ip地址。

二:配置从服务器slave

# vi /etc/my.cnf

server-id=252

从服务器只需要添加一个这个就行。使用从服务器ip地址来定义,方便区分。

三:启动主从服务器的mysql

四:操作主服务器master

# mysql -u root -p

mysql> GRANT REPLICATION SLAVE ON *.* to 'sync'@'192.168.1.252' IDENTIFIED BY '123456';

mysql> show slave;

mysql> show master status;+--------------+----------+--------------+------------------+| File         | Position | Binlog_Do_DB | Binlog_Ignore_DB |+--------------+----------+--------------+------------------+| mysql.000003 |      260 |              |                  |+--------------+----------+--------------+------------------+1 row in set (0.00 sec)

第一步是添加用户sync,仅允许192.168.1.252从服务器访问登陆,密码123456,只能操作从复制权限(replication slave)。

第二步是显示一下slave的状态,记录下log_file名,和log_pos的值,会在从服务器进行使用。

五:从服务器配置slave

# mysql -u root -p

mysql> CHANGE MASTER TO master_host='192.168.1.251',master_user='sync',master_password='123456',master_log_file='mysql.000003',master_log_pos=260;

mysql> start slave;

mysql> show slave status\G;

第一步是更改从服务器用于与主服务器进行连接和通讯的一些参数。

第二步是开启从复制。

第三步是检查从服务器属性。(结果如下)

mysql> show slave status\G;*************************** 1. row ***************************               Slave_IO_State: Waiting for master to send event                  Master_Host: 192.168.1.251                  Master_User: sync                  Master_Port: 3306                Connect_Retry: 60              Master_Log_File: mysql.000003          Read_Master_Log_Pos: 260               Relay_Log_File: mysqld-relay-bin.000002                Relay_Log_Pos: 247        Relay_Master_Log_File: mysql.000003             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: 260              Relay_Log_Space: 403              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: 0Master_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_Running和Slave_SQL_Running的值为Yes,表示已经成功。

可以在主服务器添加数据来看从服务器是否复制成功。