This question already has an answer here:
Is there a mysql command to reset the root password?
I am trying
mysql -p -u root
but I've forgotten the password.
Is there any way to reset the password?
|
This question already has an answer here: Is there a mysql command to reset the root password? I am trying
but I've forgotten the password. Is there any way to reset the password? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Check the doc http://dev.mysql.com/doc/refman/5.1/en/resetting-permissions.html Basically this should be
|
|||||
|
|
You can start the mysql-daemon with the argument --skip-grant-tables, then you can login without prompt and alter passwords. |
|||
|
|
|
If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:
However, if you want to change (or update) a root password, then you need to use following command For example, If old password is abc, and set new password to 123456, enter:
Thanks. |
|||
|