1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

django.db.utils.OperationalError: connection to server at "db" (***.**.*.*), port 5432 failed: FATAL: the database system is starting up

Posted at

エラー解決方法

dockerを使用した状態で下記エラーが発生した場合
dockerイメージとdockerプロセスを全て削除すれば解決する

django.db.utils.OperationalError: connection to server at "db" (...*), port 5432 failed: FATAL: the database system is starting up

■コマンド

コンテナを全削除する


docker ps -aq | xargs docker rm

イメージを全削除する


docker images -aq | xargs docker rmi

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?