首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

Mysql主从形式搭建

2014-04-21 
Mysql主从模式搭建mysqlchange master to master_hostMasterIP,master_userusername,master_passwo

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状态,否则都是错误的状态

?

??

热点排行