Ubuntu重置Mysql密码

Posted Thresh|的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu重置Mysql密码相关的知识,希望对你有一定的参考价值。

Ubuntu重置mysql密码

太久没有用Linux的Mysql,忘记密码。这里记录一下在Ubuntu下重置Mysql密码。

1.使用命令:cat /etc/mysql/debian.cnf

image-20200620090349676

2.使用user和password登陆mysql,然后切换到mysql数据库。缺省有两个数据库:mysql和test。 mysql库存放着mysql的系统和用户权限信息,我们改密码和新增用户,实际上就是对这个库进行操作。

image-20200620090801092

3.使用命令更新root密码

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

update user set plugin=\'mysql_native_password\';

flush privileges;

以上是关于Ubuntu重置Mysql密码的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu 安装mysql 重置密码并远程连接

mysql密码重置 ubuntu18.04

sh 在Ubuntu Linux上设置/更改/重置MySQL root密码

mysql重置密码

Ubuntu 20.04 从零开始安装MySQL 8.0并重置root密码

MySQL:如何重置或更改 MySQL root 密码?