Ubuntu 18.04安装mysql,重设root密码

初次安装后,登录方式

sudo mysql -uroot -p
或者
sudo cat /etc/mysql/debian.cnf 查看随机密码然后登录

/etc/mysql/debian.cnf 内容如下:

Ubuntu 18.04安装mysql,重设root密码_第1张图片

修改密码

#连接到mysql数据库
use mysql;         

#修改密码123456是密码         
update mysql.user set authentication_string=password('123456') where user='root' and Host ='localhost';   

update user set  plugin="mysql_native_password";     

flush privileges;

quit; 

 

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