Reset Forgotten MySQL Root Password
Reset Forgotten MySQL Root PasswordHave you ever forgotten the root password on one of your MySQL servers? No? Well maybe I’m not as perfect as you. This is a quick h00tow (how to) reset your MySQL root password. It does require root access on your server. If you have forgotten that password wait for another article. Original article posted on reset mysql root password. First things first. Log in as root and stop the mysql daemon. Now lets start up the mysql daemon and skip the grant tables which store the passwords. mysqld_safe --skip-grant-tables You should see mysqld start up successfully. If not, well you have bigger issues. Now you should be able to connect to mysql without a password. mysql --user=root mysql update user set Password=PASSWORD('new-password') where user='root'; Now kill your running mysqld, then restart it normally. You should be good to go. Try not to forget your password again.
|






Recent comments
12 hours 46 min ago
13 hours 43 min ago
13 hours 55 min ago
20 hours 28 sec ago
22 hours 29 min ago
23 hours 40 min ago
1 day 2 hours ago
1 day 4 hours ago
1 day 5 hours ago
1 day 7 hours ago