これは私の Django プロジェクトの settings.py ファイルです。OS : Windows、ホスティング : localhost
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'JESS',
'PASSWORD': 'dreamhost',
'HOST': 'localhost',
'PORT': '5432',
}
}
このブログの指示に従って、PostgreSQL と psycopg2 をインストールしました
http://shivul.wordpress.com/2010/05/07/installing-django-with-postgresql-on-windows-and-ubuntu/
実行するpython manage.py syncdb
と、次のエラーが表示されます。
OperationalError: Could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432
Could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432
PostgreSQL インストール ファイルの pgadmin3 アプリケーションで設定を編集しようとしても、同じエラーがスローされます
Could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432
Could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432
stackoverflow とインターネットで同様の質問を調べましたが、すべてが古くなっているか、機能していません。