当前位置: 代码迷 >> 综合 >> CentOS7安装MySQL Community Server 5.7.31无法查询到随机密码解决方法
  详细解决方案

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

热度:66   发布时间:2023-11-22 16:02:11.0

官网搜索

MySQL官网
在这里插入图片描述

安装顺序

在这里插入图片描述
安装顺序
1.common
2.libs
3.client
4.server

免密登录后改密

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

在其配置文件/etc/my.cnf中加入skip-grant-tables=1即可
在这里插入图片描述

重启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 -ADatabase changedmysql> 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: 1mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

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

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

MySQL免密

  相关解决方案