MySQL Forums
Forum List  »  MySQL Administrator

Re: Problems Logging in
Posted by: zahid quadri
Date: February 06, 2012 11:13PM

insetead of giving grants to localhost provide access for some ip or use % it will definately work for you.

mysql -u root

mysql> use mysql;

mysql> update user set password=password('some pass') where user='root';

mysql>grant all on *.* to 'root'@'%' identified by 'some pass' with grant option;

flush privileges;

now check from any machine it will work.

Options: ReplyQuote


Subject
Written By
Posted
January 23, 2012 04:13PM
January 23, 2012 08:58PM
January 23, 2012 09:35PM
Re: Problems Logging in
February 06, 2012 11:13PM


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.