Answers for "forgot current root password mysql"

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
3

change mysql root password

$ sudo mysql -u root -p
Enter password: (enter your root password)

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_new_password';
mysql> FLUSH PRIVILEGES;
mysql> exit;

then to confirm

mysql -u root -p 
Enter password: ********

Success!!!
Posted by: Guest on September-20-2021
0

reset mysql root password using alter user statement

ALTER USER 'root'@'localhost' IDENTIFIED BY 'my_password';
Posted by: Guest on June-23-2021
-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 "forgot current root password mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language