013 mysql 忘记密码,修改密码

2018-03-27  本文已影响9人  夏大王2019

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
上一篇 下一篇

猜你喜欢

热点阅读