Answers for "how get root mysql password in ubunut"

SQL
1

mysql change root password ubuntu

ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
Posted by: Guest on August-07-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 "how get root mysql password in ubunut"

Code answers related to "SQL"

Browse Popular Code Answers by Language