あなたが走ったとき
mysql -u bill -p
このエラーが発生しました
ERROR 1045 (28000): Access denied for user 'bill'@'localhost' (using password: YES)
mysqldは次のように接続することを期待しています bill@localhost
作成してみてください bill@localhost
CREATE USER bill@localhost IDENTIFIED BY 'passpass';
grant all privileges on *.* to bill@localhost with grant option;
リモートで接続する場合は、DNS名、パブリックIP、またはTCP / IPを使用した127.0.0.1のいずれかを指定する必要があります。
mysql -u bill -p -hmydb@mydomain.com
mysql -u bill -p -h10.1.2.30
mysql -u bill -p -h127.0.0.1 --protocol=TCP
ログインしたら、これを実行してください
SELECT USER(),CURRENT_USER();
USER()は、MySQLで認証を試みた方法を報告します
CURRENT_USER()は、mysql.userテーブルからMySQLでの認証が許可された方法を報告します
これにより、mysqlへのログインが許可された方法と理由がよりよくわかります。なぜこの見方が重要なのですか?これは、ユーザー認証順序付けプロトコルと関係があります。
次に例を示します。デスクトップMySQLに匿名ユーザーを作成します
mysql> select user,host from mysql.user;
+---------+-----------+
| user | host |
+---------+-----------+
| lwdba | % |
| mywife | % |
| lwdba | 127.0.0.1 |
| root | 127.0.0.1 |
| lwdba | localhost |
| root | localhost |
| vanilla | localhost |
+---------+-----------+
7 rows in set (0.00 sec)
mysql> grant all on *.* to x@'%';
Query OK, 0 rows affected (0.02 sec)
mysql> select user,host from mysql.user;
+---------+-----------+
| user | host |
+---------+-----------+
| lwdba | % |
| mywife | % |
| x | % |
| lwdba | 127.0.0.1 |
| root | 127.0.0.1 |
| lwdba | localhost |
| root | localhost |
| vanilla | localhost |
+---------+-----------+
8 rows in set (0.00 sec)
mysql> update mysql.user set user='' where user='x';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
mysql> select user,host from mysql.user;
+---------+-----------+
| user | host |
+---------+-----------+
| | % |
| lwdba | % |
| mywife | % |
| lwdba | 127.0.0.1 |
| root | 127.0.0.1 |
| lwdba | localhost |
| root | localhost |
| vanilla | localhost |
+---------+-----------+
8 rows in set (0.00 sec)
mysql>
わかりました、匿名ユーザーとしてログインします。
C:\MySQL_5.5.12>mysql -urol -Dtest -h127.0.0.1 --protocol=TCP
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.5.12-log MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select user(),current_user();
+---------------+----------------+
| user() | current_user() |
+---------------+----------------+
| rol@localhost | @% |
+---------------+----------------+
1 row in set (0.00 sec)
mysql>
認証の順序は非常に厳密です。最も具体的なものから最低のものまでチェックします。この認証スタイルについては、DBA StackExchangeで書きました。
必要に応じて、mysqlクライアントのプロトコルとしてTCPを明示的に呼び出すことを忘れないでください。
FLUSH PRIVILEGES
?