首页 > 技术文章 > 修改MySQL数据库密码

lotuses 2018-11-22 10:45 原文


1.用root 进入mysql后
  mysql>set password =password('你的密码');
  mysql>flush privileges;


2.使用GRANT语句
  mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ;
  mysql>flush privileges;

3.进入mysql库修改user表
  mysql>use mysql;
  mysql>update user set password=password('你的密码') where user='root';
  mysql>flush privileges;

原文地址:https://www.2cto.com/database/201711/700420.html

比较详细文章:http://www.cnblogs.com/yang82/p/7794712.html

推荐阅读