mysql に接続できないのはなぜですか?
mysql -u root -ptest101 -h xxx.xxx.xxx.xxx
ERROR 1130 (HY000): Host 'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server
my.cnf には以下があります
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 0.0.0.0
私も以下を実行しました...
'UPDATE mysql.user SET Password = PASSWORD('test101') WHERE User = 'root';
FLUSH PRIVILEGES;
mysql -u root -ptest101 を使用してホスト マシンにアクセスできますが、mysql -u root -ptest101 -h xxx.xxx.xxx.xxx を使用しません。
うわぁ…どうしてこうなった… 私はubuntj 12.04です
mysql> SELECT host FROM mysql.user WHERE User = 'root';
+---------------------------------------------+
| host |
+---------------------------------------------+
| % |
| 127.0.0.1 |
| ::1 | |
| localhost |
+---------------------------------------------+
5 rows in set (0.00 sec)