如何找回忘记的 MySQL Root 密码
问题:
用户可能会遇到的情况他们忘记了 MySQL root 密码。这可能会造成重大障碍,特别是对于系统管理员而言。没有 root 密码,将无法访问和管理 MySQL。
解决方案:
要恢复 root 密码,可以执行以下一系列步骤:
<code class="shell">sudo service mysql stop</code>
<code class="shell">sudo mysqld_safe --skip-grant-tables --skip-syslog --skip-networking</code>
打开一个新终端并执行:
<code class="shell">mysql -u root</code>
输入以下查询来更改密码:
<code class="sql">UPDATE mysql.user SET authentication_string=PASSWORD('password') WHERE User='root'; FLUSH PRIVILEGES;</code>
注意:对于 MySQL 版本 5.7 及更高版本,字段名称查询中应该是“authentication_string”而不是“password”。
<code class="shell">mysqladmin shutdown sudo service mysql start</code>
使用这些步骤后,root 密码将被重置,用户可以重新访问其 MySQL 数据库。请务必记录新密码以供将来参考。
以上是如何恢复忘记的 MySQL Root 密码?的详细内容。更多信息请关注PHP中文网其他相关文章!