mysql> GRANT REPLICATION SLAVE ON *.* to 'mysync'@'%' identified by 'passwd';
mysql> show master status; #查看master的状态 +------------------+----------+--------------+------------------+ File Position Binlog_Do_DB Binlog_Ignore_DB +------------------+----------+--------------+------------------+ mysql-bin.000002 532 +------------------+----------+--------------+------------------+ 1 row in set (0.00 sec)
注:执行完此步骤后不要再操作主服务器MYSQL,防止主服务器状态值Position变化
mysql> show master logs; #查看master二进制日志位置
mysql> show variables like 'server_id'; #查看server_id
本地xampp配置(作为从服务器slave):
修改配置文件:
1 2
X:\Xampp\mysql\bin\my.ini #xampp默认配置文件
配置Slave:
1 2 3 4 5 6 7 8
mysql> change master to master_host='mysql.malu.me',master_port=3306,master_user='mysync',master_password='passwd',master_log_file='mysql-bin.000001',master_log_pos=532;
mysql> GRANT REPLICATION SLAVE ON *.* to 'mysync'@'%' identified by 'passwd'; mysql> flush privileges; mysql> change master to master_host='127.0.0.1',master_port=3307,master_user='mysync',master_password='passwd',master_log_file='mysql-bin.000001',master_log_pos=532;
注:3307为隧道入口
本地xampp执行:
1 2 3 4 5 6
mysql> GRANT REPLICATION SLAVE ON *.* to 'mysync'@'%' identified by 'passwd'; mysql> flush privileges; mysql> change master to master_host='mysql.malu.me',master_port=3306,master_user='mysync',master_password='passwd',master_log_file='mysql-bin.000001',master_log_pos=532;