3
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?

はじめてのアドベントカレンダーAdvent Calendar 2024

Day 8

Docker でpostgresql サーバを立てたが FATAL: password authentication failed for user "XXX"

Posted at

問題

DockerでPostgreSQLのサーバを立てたもののホストマシン側からpsqlによる接続ができない。
コンテナ内部でパスワードを変えたりしても認証が通らない。

原因

5432 portの競合が起きていた。

対応

netstat -naoを実行して、5432のportを使用しているPIDを特定。
PID指定してプロセスを終了する。
再度コンテナを起動すると接続できた。

学び

portの競合が起きている場合でもコンテナって起動することがあるんだ。

参考

3
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
3
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?