Ubuntu Mysql8.0 初始密码问题

前缀:如果没有根据官网文档更新仓库源的话(官方的方式安装,中途会有root密码设置界面…):
Mysql 8.0+版本 root用户采用的是 auth_socket(auth_socket authentication plugin authenticates clients that connect from the local host through the Unix socket file) 验证方式, 导致初次使用的时候新手会踩坑, 因此记录一下.

安装

sudo apt-get install mysql-server

Ubuntu20.04会自动安装 mysql8.0版本

安装完毕之后登录root时需要注意使用管理员权限

Ubuntu下记得

 sudo mysql -uroot

而不是

mysql -uroot

否则登录不了, 以为是密码的问题, 瞎折腾浪费时间.

初始的root用户 本地登录是不需要密码的.

然后修改 root的验证方式:

alter user 'root'@'localhost' identified with mysql_native_password by '新密码';

网上有其他的方式, sql语句 update user表的, 我试了下不行

update user set plugin=“mysql_native_password”,authentication_string=password(‘设置的密码’) where user=“root”;

你可能感兴趣的:(数据库,mysql,ubuntu,linux)