Mysql Replication ERROR 1201 (HY000): Could not initialize master info structure for ''; more error messages can be found in the MariaDB error log


 

One of my slave server after restart got this error message

  ERROR 1201 (HY000): Could not initialize master info structure for ''; more
  error messages can be found in the MariaDB error log

It was solved by:
a. login into the mysql server (slave)
b. mysql> reset slave;
c. then reconfigure with
    mysql> change master to .... ;
    the documentation goes here.

Hope it helps.


Comments