首頁  >  文章  >  資料庫  >  如何刪除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