ERROR 1045 (28000)

エラー表示例
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using 
password: NO)

このエラーはパスワードが設定されているユーザーを使用して MySQL サーバに接続する際に、パスワードを送信しなかった場合にこのエラーが表示されます。

C:\Documents and Settings\test>mysql -u root -D test
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using 
password: NO)

この場合、パスワードを送信するオプション「-p」をつけると MySQL サーバに接続できるようになります。

C:\Documents and Settings\test>mysql -u root -D test -p
Enter password:

ここで設定されているパスワードを入力すると、MySQL サーバに接続されます。

C:\Documents and Settings\test>mysql -u root -D test -p
Enter password: ***********
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 23 to server version: 4.1.19-community-nt

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

カテゴリー一覧

MySQL のエラー