CentOS7安装MySQL Community Server 5.7.31无法查询到随机密码解决方法

官网搜索

MySQL官网
CentOS7安装MySQL Community Server 5.7.31无法查询到随机密码解决方法_第1张图片

安装顺序

CentOS7安装MySQL Community Server 5.7.31无法查询到随机密码解决方法_第2张图片
安装顺序
1.common
2.libs
3.client
4.server

免密登录后改密

当然有些人可能是root密码真忘记了,那样可以通过mysql免密码登陆

在其配置文件/etc/my.cnf中加入skip-grant-tables=1即可
CentOS7安装MySQL Community Server 5.7.31无法查询到随机密码解决方法_第3张图片

重启mysql服务

systemctl restart mysqld
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

mysql> update user set authentication_string = password("123456") where user="root";
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 1

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

然后将/etc/my.cnf中的skip-grant-tables=1注释掉,重启mysql服务即可。

在此要注意的是,之前版本密码修改字段为password,在5.7版本之后字段为authentication_string

MySQL免密

你可能感兴趣的:(Linux)