arch下修改MySQL密码——记录

使用初始密码登录,使用mysql提示:

mysql> use mysql;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

使用一下命令修改密码:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码'; 

Guess you like

Origin blog.csdn.net/weixin_44451210/article/details/91347779