MySQL Forums
Forum List  »  InnoDB

Re: ERROR 1449 :(HY000) There is no '@' localhost' registerd
Posted by: Rick James
Date: January 24, 2009 06:21PM

Replication issue?

Set up a "user" for replication, something like this on the master
GRANT REPLICATION SLAVE ON *.* to 'repl'@'11.22.33.44' IDENTIFIED BY 'pwd';
FLUSH PRIVILEGES;

Then use
CHANGE MASTER TO MASTER_USER='repl', MASTER_PASSWORD='pwd';
on each slave

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: ERROR 1449 :(HY000) There is no '@' localhost' registerd
3904
January 24, 2009 06:21PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.