欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

设置mysql root密码

程序员文章站 2022-05-11 09:12:21
...

环境

UBUNTU 18.04 + mysql 5.7.28

方法

1、打开mysql。

mysql -uroot

2、利用以下命令修改密码

use mysql;
update mysql.user set authentication_string=password('123456') where user='root' and Host ='localhost';
update user set  plugin="mysql_native_password";     
flush privileges;
quit;

运行的实际效果如下图。

设置mysql root密码

相关标签: MySQL 修改密码