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.
私は一般的に SQL に不慣れで、サーバーの構成に問題があります。
背景: UNIX で実行されている MySQL サーバーがあります。-h localhostdbhost-typeを使用してデータベースをフォーマットしました。現在、データベースにクエリを実行していますが、ローカルでは問題なく動作しますが、別のマシンからデータベースにクエリを実行できる必要があります。
-h localhost
リモートで接続できるように、SQL サーバーの IP アドレスを取得するにはどうすればよいか教えてください。
構成ファイルを編集します。すなわち: /etc/mysql/my.cnf
bind-address エントリを見つけます。
bind-address = 127.0.0.1
その前にハッシュを追加して、コメントアウトします。
#bind-address = 127.0.0.1
MySQL を再起動すれば準備完了です。