Answers for "password of root in mysql"

SQL
6

mysql set root password

use mysql;

update user set authentication_string=PASSWORD("mynewpassword") where User='root';

flush privileges;

quit
Posted by: Guest on March-10-2020
4

mysql -u root -p password

mysql -u root -p
# -u 	User for login if not current user (here: root)
# -p    Password. If not given it's asked from the tty.
Posted by: Guest on June-13-2021
0

mysql add root password

ALTER USER 'username' IDENTIFIED WITH mysql_native_password BY 'password';
Posted by: Guest on September-01-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language