首页  >  文章  >  数据库  >  如何删除MySQL root用户的密码?

如何删除MySQL root用户的密码?

Susan Sarandon
Susan Sarandon原创
2024-10-30 11:11:56699浏览

How to Remove the Password for the Root User in MySQL?

将 MySQL Root 密码重置为空

问:如何通过命令行界面删除 MySQL 中 root 用户的密码?

答:要将 root 用户的密码设置为 null(即无密码),请在 MySQL 命令行客户端中执行以下步骤:

<code class="sql">use mysql;
update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';</code>

如果“plugin”字段设置为“auth_socket”,您可能还需要更改它和密码:

<code class="sql">use mysql;
update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';</code>

这些更新完成后,您将能够以 root 用户身份连接,而无需提供密码,只需运行以下命令:

<code class="sql">mysql -u root</code>

以上是如何删除MySQL root用户的密码?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn