0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MySQLのbind-addressが無いんですが……?

Posted at

前置き

タイトル通りの問題に直面したので、解決方法を残しておく。
多分忘れた頃にまた出会う。

状況

外部端末からサーバのmysqlにアクセスするために調べてると、どの記事も

/etc/my.cnfに書かれてるbind-addressの値を変えたり、コメントアウトすると良い

みたいに書いてある。
でも/etc/my.cnfは無いし、/etc/mysql/my.cnfはあったけど、bind-addressなんて記述は無いし、何言ってんだこいつら状態。

解決方法

/etc/mysql/my.cnfの末尾に下記を追加する

[mysqld]
bind-address = <任意のIPアドレス>

とりあえずどっからでもアクセスできるようにしたければ、bind-address = 0.0.0.0とする。

最後に接続確認で

mysql -h <サーバのIPアドレス> -u <ユーザー名> -p

を実行して、無事ログインできればOK。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?