これらの問題を解決するために数時間を費やしましたが、何も到達しませんでした。ネット上ではこの問題についていくつかのトピックがありますが、これを解決するための絶対的なことを言っているものはありません。
django プロジェクトで使用するために postgresql をインストールしました。
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2", # Add "postgresql_psycopg2", "postgresql", "mysql", "sqlite3" or "oracle".
"NAME": "name", # Or path to database file if using sqlite3.
"USER": "postgres", # Not used with sqlite3.
"PASSWORD": "pass", # Not used with sqlite3.
"HOST": "", # Set to empty string for localhost. Not used with sqlite3.
"PORT": "", # Set to empty string for default. Not used with sqlite3.
}
}
これは私のsettings.pyであり、エラーは
could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
誰かがそれについて解決策を持っていましたか?