Ubuntu20.04 Mysql8.0设置密码

  • 这次mysql安装过程中没有要求设置密码,安装好之后直接可以进,但是一直不能设置密码,百度了好多,终于找到久违的命令
alter user 'root'@'localhost' identified with mysql_native_password by '123456';
flush privileges;

你可能感兴趣的:(mysql)