程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> ERROR 1201 (HY000):Could not initialize master info structur

ERROR 1201 (HY000):Could not initialize master info structur

編輯:MySQL綜合教程

ERROR 1201 (HY000):Could not initialize master info structure的問題   今天在做MySQL主從復制時遇到個ERROR 1201 (HY000): Could not initialize master info structure . 出現這個問題的原因是之前曾做過主從復制!   www.2cto.com   解決方案是:運行命令 stop slave; 成功執行後繼續運行 reset slave; 然後進行運行GRANT命令重新設置主從復制。 具體過程如下: Command代碼   mysql> change master to master_host='127.0.0.1', master_user='user', master_pass   word='user', master_log_file='mysql-bin-000202', master_log_pos=553;   ERROR 1201 (HY000): Could not initialize master info structure; more error messa   ges can be found in the MySQL error log   mysql> stop slave;   Query OK, 0 rows affected, 1 warning (0.00 sec)      mysql> reset slave;   Query OK, 0 rows affected (0.00 sec)      mysql> change master to master_host='127.0.0.1', master_user='user', master_pass   word='user', master_log_file='mysql-bin-000202', master_log_pos=553;   Query OK, 0 rows affected (0.11 sec)    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved