美文网首页
013 mysql 忘记密码,修改密码

013 mysql 忘记密码,修改密码

作者: 夏大王2019 | 来源:发表于2018-03-27 22:08 被阅读9次

vim /etc/mysql/mysql.conf.d/mysqld.cnf

在[mysqld]段下加入一行“skip-grant-tables”

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

flush privileges;

把刚才加入的那一行“skip-grant-tables”注释或删除掉。

service mysql restart

启动:sudo service mysql start
停止:sudo service mysql stop

参考链接

  1. Python 操作 MySQL 的正确姿势
  2. https://www.cnblogs.com/wt11/p/6141225.html

相关文章

网友评论

      本文标题:013 mysql 忘记密码,修改密码

      本文链接:https://www.haomeiwen.com/subject/zklecftx.html