Changing mysql root password when you have lost the original password.
1 |
sudo /etc/init .d /mysql stop |
1 |
sudo mysqld_safe --skip-grant-tables & |
Now type the following command, you should not be prompted for a password when you enter this command
1 |
mysql -u root |
1 |
use mysql; |
Change the password for root user with:
1 |
update user set password=PASSWORD( "mynewpassword" ) where User= 'root' ; |
1 |
flush privileges; |
1 2 3 4 |
root@linux ~] # service mysqld stop 150404 20:55:28 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld .pid ended Stopping mysqld: [ OK ] [1]+ Done sudo mysqld_safe --skip-grant-tables |