Q: コマンド ライン インターフェイスを介して MySQL の root ユーザーのパスワードを削除するにはどうすればよいですか?
A: 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 中国語 Web サイトの他の関連記事を参照してください。