设置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;
运行的实际效果如下图。
上一篇: PAT_B1032 | 挖掘机技术哪家强
下一篇: gitlab 修改超级管理员密码