丢失了MySQL密码怎么办?(怎样重置MySQL密码)

By admin, 26 五月, 2015
  1.  找到my.ini(或my.cnf)
  2. 找到my.ini里面的[mysqld]一行
  3. 在[mysqld]下一行插入skip-grant-tables,保存
  4. 重启mysql服务器,此后访问mysql无需授权,什么密码都行

 

如果你的mysql服务器可以被远程访问,那么还是重新设一个密码比较好,在可以运行SQL语句的地方(mysql命令行或phpMyAdmin里的SQL运行页面)运行:

 

UPDATE mysql.user SET Password=PASSWORD('new_password') WHERE User='root';

FLUSH PRIVILEGES;

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"