外部ホストからMySQLへの接続を許可

mysql -u root -p
mysql> select user,host from mysql.user;
mysql> show databases;

外部ホスト指定

mysql> grant all privileges on DB名.* to USER@example.com identified by 'パスワード';

全外部ホスト

mysql> grant all privileges on DB名.* to USER@"%" identified by 'パスワード';

範囲付き外部ホスト

mysql> grant all privileges on DB名.* to USER@192.168.1."%" identified by 'パスワード';

%がワイルドカードとなる

my.cnfのbind-addressの記述をコメントアウト