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?

【Docker】MySQLに接続できない

Posted at

はじめに

DockerでMySQLのコンテナを起動した際に、接続できなくなったので、その対応をまとめます。

問題

エラー文

Access denied for user 'user'@'172.19.0.1' (using password: YES)

解決方法

このエラーが出た時の原因は色々あると思いますが、自分が遭遇した時の原因はDockerのボリュームでした。
名前付きボリュームを定義して立ち上げた時、文字コードの変更やMySQLバージョンの変更後に接続すると、このエラーが発生することがあります。
以下のコマンドでボリュームを消して再度コンテナを起動すると、エラーが解消します。

$ docker-compose down --volumes
$ docker-compose up -d --build

参考

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?