Knowledgebase: MYSQL
How can I reset my MySQL password?
|
|
To reset your mysqld password just follow these instructions :
Because you are not checking user privs at this point, it's safest to disable networking. In Dapper, /usr/bin/mysqld... did not work. However, mysqld --skip-grant-tables did.
For either method, once have received a message indicating a successful query (one or more rows affected), flush privileges: FLUSH PRIVILEGES; Then stop the mysqld process and relaunch it with the classical way: sudo /etc/init.d/mysql stop sudo /etc/init.d/mysql start | |
|
Comments (0)