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

Susan Sarandon
发布: 2024-10-30 11:11:56
原创
699 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!