MySQL Forums
Forum List  »  Newbie

Re: MySQL user password encryption help needed .... plz
Posted by: Keith Larson
Date: November 21, 2014 05:06PM

Simple answer no.

If you have root access reset the password

SET PASSWORD FOR '<username>'@'localhost' = PASSWORD('<cleartext password>');
SET PASSWORD FOR '<username>'@'%' = PASSWORD('<cleartext password>');

If you are looking to change the root and you do not have a user with permission, then restart with --skip-grant-tables enabled and then log in to set password.

http://anothermysqldba.blogspot.com/search/label/--skip-grant-tables

Just trying to help....

http://anothermysqldba.blogspot.com

Options: ReplyQuote


Subject
Written By
Posted
Re: MySQL user password encryption help needed .... plz
November 21, 2014 05:06PM


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.