Answers for "get mysql password linux"

SQL
0

select password from user mysql

mysql> SELECT host,user,authentication_string FROM mysql.user;
Posted by: Guest on May-17-2021
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 "get mysql password linux"

Code answers related to "SQL"

Browse Popular Code Answers by Language