問:如何透過命令列介面刪除 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中文網其他相關文章!