Are you want to change the password of your MySQL database, then keep your close attention in this tutorial as I am going to share how to change MySQL password using the command line.
Below is the code to change MySQL password. It will work with the MySQL 5.x versions. Open command window
or terminal if you are using Linux and execute the following few commands.
1 2 3 |
update user set password=PASSWORD('YOUR_NEW_PASSWORD') where User='root'; flush privileges; quit; |
Do you like & share this article with your friends, and don’t forget to follow us on Facebook and Twitter to learn cool tutorials.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: change MySQL password, mysql tutorial, mysql tutorials with example, php mysql tutorial