MySQL5.7没有初始密码解决办法

2020-04-29 16:02:13来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

MySQL5.7没有初始密码解决办法

目录

  • 1.开启跳过权限验证
  • 2.重置密码

1.开启跳过权限验证

vi /etc/my.cnf
[mysqld]
skip-grant-tables

/etc/init.d/mysqld restart

2.重置密码

use mysql;
update user set authentication_string=password('123456') where user='root' and host='localhost';
flush privileges;

/etc/init.d/mysqld restart

vi /etc/my.cnf
[mysqld]
skip-grant-tables    #delete

/etc/init.d/mysqld restart

ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';

原文链接:https://www.cnblogs.com/yanyanqaq/p/12801710.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:二进制部署MySQL5.7

下一篇:shell脚本之十四:企业案例