Mysql主从模式搭建
mysql>change master to master_host='MasterIP',master_user='username',master_password='password',master_log_file='mysql-bin.000001',master_log_pos=112;#指定主节点以及同步的log-bin文件和偏移量mysql>start slave;#启动从节点show slave status\G#查看slave的状态注意:Slave_IO及Slave_SQL进程必须正常运行,即YES状态,否则都是错误的状态
?
??