MySQL Forums
Forum List  »  Install & Repo

Re: ERROR 1045 (28000): Access denied for user 'root'@'192.168.56.1' (using password: YES)
Posted by: Thomas Schläppi
Date: November 21, 2016 07:41AM

Hi Peter,

I did:

CREATE USER 'dbadmin'@'localhost' IDENTIFIED BY 'mypassword';
CREATE USER 'dbadmin'@'%' IDENTIFIED BY 'mypassword';
GRANT ALL PRIVILEGES ON * . * TO 'dbadmin'@'localhost';
GRANT ALL PRIVILEGES ON * . * TO 'dbadmin'@'%';

...and now it works with user dbadmin from remote.

Thanks

Thomas

Options: ReplyQuote




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.