Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ubuntu 12.04 では、外部から mysql にアクセスできません。localhostを使用すると機能します。
my.conf には
bind-address = 0.0.0.0
では、何が問題なのでしょうか? 私は3306ポートをすべて開いています。どうすればデバッグできますか?
すべての IP アドレスでユーザー アクセスを許可する必要があります
GRANT ALL PRIVILEGES ON mydatabasename.* TO 'myusername'@'%' IDENTIFIED BY 'mypassword'
キーは、ユーザーが任意の IP からログインできることを示す「%」ワイルドカードです。