注册
登录

您现在的位置是:首页 > 学无止境

ubuntu1804 mysql未设置密码或忘记密码解决方法

木木彡82 2019-03-03 17:07:50 0人围观
ubuntu18.04 首次登录mysql未设置密码或忘记密码解决方法

转载自:https://blog.csdn.net/qq_38737992/article/details/81090373

1.首先输入以下指令:

sudo cat /etc/mysql/debian.cnf

2. 再输入以下指令:

mysql -u debian-sys-maint -p

3. 修改root密码

use mysql;

update mysql.user set authentication_string=password('root') where user='root' and Host ='localhost';

update user set plugin="mysql_native_password"; 

flush privileges;

quit;

4. 重新启动mysql:

sudo service mysql restart

文章评论

  • 登录后评论

点击排行