Answers for "how to check db user password in mysql8 thorugh terminal"

SQL
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 check db user password in mysql8 thorugh terminal"

Code answers related to "SQL"

Browse Popular Code Answers by Language