How can I set a root password in MySQL?

To set a root password in MySQL, you can follow these steps:

Open the MySQL command line tool. You can do this by opening a terminal or command prompt and typing the following command:

Copy code

mysql -u root

This will log you in to MySQL as the root user.

Once you're logged in to MySQL, you can set a password for the root user using the following command:

sql

Copy code

ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';

Replace "new_password" with the password you want to set for the root user.

Note that in some versions of MySQL, you may need to use the following command instead:

sql

Copy code

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('new_password');

Once you've set the new password, you can exit the MySQL command line tool by typing "exit" or "quit".


That's it! You have now set a root password in MySQL. Make sure to remember the new password, as you'll need it to log in to MySQL in the future.



Previous Post Next Post