如何刪除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學習者快速成長!