首頁 >資料庫 >mysql教程 >Mysql 主从同步简单配置_MySQL

Mysql 主从同步简单配置_MySQL

WBOY
WBOY原創
2016-06-01 13:11:351163瀏覽

//master

log-bin=mysql-bin
server-id=222

//创建同步帐号
GRANT REPLICATION SLAVE ON *.* to 'mysync'@'172.168.16.105' identified by 'test'


//slave

server-id=221

change master to master_host='192.168.130.198',master_user='sync',master_password='yLGxdSTwmY',master_log_file='mysql-bin.000022',master_log_pos=107;
start slave


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn