当前位置:Gxlcms > mysql > Mysql5.7.14linux版密码忘记完美解决办法

Mysql5.7.14linux版密码忘记完美解决办法

时间:2021-07-01 10:21:17 帮助过:17人阅读

在/etc/my.conf文件中[mysqld] 下面最后增加一行:skip-grant-tables

记住是[mysqld]下最后,不要增加到[mysqld_safe]下面

保存之后,重启Mysql,在linux命令行直接执行:mysql回车

OK

修改密码:

update mysql.user set password=password('root') where user='root'

结果报错:

mysql> select host,user,password from user ;
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
desc user;

查看字段发现没有password字段,有authentication_string字段

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

ok

删除/etc/my.conf文件中[mysqld] 下面的skip-grant-tables

重启mysql

总结

以上所述是小编给大家介绍的Mysql5.7.14 linux版密码忘记完美解决办法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:

  • linux创建用户useradd命令代码示例
  • linux 中的ls命令参数详解及ls命令的使用实例
  • Linux常用命令last的使用方法详解
  • Linux中 sed 和 awk的用法详解
  • Linux下Tomcat8.0.44配置使用Apr的方法
  • linux下多个mysql5.7.19(tar.gz)安装图文教程
  • linux下mysql5.7.19(tar.gz)安装图文教程
  • Linux 中firewall的使用方法总结

人气教程排行