Answers for "mysql root forgot password"

SQL
1

change root password mysql

#First Login with administrative account (Even root itself)

mysql> use mysql;
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD("NewPassword");
mysql> flush privileges;

#Now quit and login
mysql> quit

mysql -u root -p
#Click enter and It will prompt you to enter password
#Just to be safe you should also still try to log in without entering a password
Posted by: Guest on February-01-2021
0

how to change mysql root password in windows 10

ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
Posted by: Guest on October-14-2020
-2

remove root password mysql

mysqladmin -u root -pType_in_your_current_password_here password ''
Posted by: Guest on March-03-2020

Code answers related to "mysql root forgot password"

Code answers related to "SQL"

Browse Popular Code Answers by Language