解决Linux下Mysql5.7忘记密码问题
一、问题
linux下的mysql5.7忘记密码
二、解决
•第一步:打开mysql5.7的配置文件my.cnf,并在里面增加一行:skip-grant-tables 保存并退出(:wq)
[root@iz09a32x1sghz3z ~]# vi /etc/my.cnf
•第二步:重启mysql
[root@iz09a32x1sghz3z ~]# service mysqld restart
•第三步:登录mysql并且修改密码
用root账号登录: [root@iz09a32x1sghz3z ~]# mysql -u root
使用mysql中的mysql数据库: mysql> use mysql;
修改密码: update user set authentication_string = password("szfore_68638") where user="root" ;
刷新数据库: flush privileges;
退出: quit;
注意:mysql5.7的user表中的password字段已经改成了authentication_string 字段了。
这时候,需要输入的命令是update user set authentication_string = password("szfore_68638") where user="root" ;
•第四步:打开mysql5.7的配置文件my.cnf,把刚增加这行:skip-grant-tables 删除掉 保存并退出(:wq)
•第五步:重新启动mysql,即可用修改好的密码登录了。
[root@iz09a32x1sghz3z ~]# service mysqld restart
总结
以上所述是小编给大家介绍的解决linux下mysql5.7忘记密码问题,希望对大家有所帮助
推荐阅读
-
linux下忘记mysql密码的几种找回方法(推荐)
-
解决Linux下Tomcat向MySQL插入数据中文乱码问题
-
Linux下MySQL5.6的修改字符集编码为UTF8(解决中文乱码问题)_MySQL
-
MySQL5.7在Windows8.1下忘记密码的问题解决(图文)
-
CentOS下安装mysql时忘记设置root密码致无法登录的解决方法
-
在Linux环境下mysql的root密码忘记解决方法(三种)
-
CentOS下安装mysql时忘记设置root密码致无法登录的解决方法
-
windows下mysql忘记root密码的解决方法
-
linux下mysql的root密码忘记的解决方法
-
Mac下MySQL5.7忘记root密码的解决方法