Answers for "how to find root password in 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
1

where to locate set password for mysql

ALTER USER 'root'@'localhost' IDENTIFIED BY 'PASSWORD';
Posted by: Guest on February-29-2020
0

how to know password of mysql root in linux terminal

mysql> use mysql;
​mysql> update user set authentication_string=password('NEWPASSWORD') where user='root';
​mysql> flush privileges;
​mysql> quit
Posted by: Guest on October-16-2021

Code answers related to "how to find root password in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language