ユーザーのパスワードを変更する
スポンサードリンク
mysqladmin コマンドを使用して MySQL のユーザーのパスワードを変更できます。
使用例
mysqladmin password 新しいパスワード -u ユーザー名 -p
例えば root ユーザーのパスワードを「newpassword」に変更する場合には、以下のように実行します。
ユーザー root のパスワードを newpassword に変更する場合
D:\MySQL\bin>mysqladmin password newpassword -u root -p Enter password:
「Enter password」とパスワードの入力が求められるので、ここでは変更前の現在のパスワードを入力します。
すると、パスワードの変更が完了します。
D:\MySQL\bin>mysqladmin password newpassword -u root -p Enter password: ***********
これで、次回以降、root のパスワードは「newpassword」となります。
ちなみに、パスワードの指定時にシングルクオテーションで新しいパスワードを指定すると、シングルクオテーション自体もパスワードの文字として認識されます。
(実行時の環境は、MySQL4.1.19/WindowsXP)
D:\MySQL\bin>mysqladmin password 'newpassword' -u root -p Enter password: *********** Warning: single quotes were not trimmed from the password by your command line client, as you might have expected.
そのため上記の例では、変更後のパスワードは「newpassword」ではなく、「'newpassword'」となります。
スポンサードリンク