この問題を解決する方法がわかりません
runserver
を試みたときにこのエラーが発生する理由がわかりません
Performing system checks...
System check identified no issues (0 silenced).
Unhandled exception in thread started by <function wrapper at 0x1085589b0>
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/Django/utils/autoreload.py", line 222, in wrapper
fn(*args, **kwargs)
File "/Library/Python/2.7/site-packages/Django/core/management/commands/runserver.py", line 107, in inner_run
self.check_migrations()
File "/Library/Python/2.7/site-packages/Django/core/management/commands/runserver.py", line 159, in check_migrations
executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
File "/Library/Python/2.7/site-packages/Django/db/migrations/executor.py", line 17, in __init__
self.loader = MigrationLoader(self.connection)
File "/Library/Python/2.7/site-packages/Django/db/migrations/loader.py", line 49, in __init__
self.build_graph()
File "/Library/Python/2.7/site-packages/Django/db/migrations/loader.py", line 184, in build_graph
self.applied_migrations = recorder.applied_migrations()
File "/Library/Python/2.7/site-packages/Django/db/migrations/recorder.py", line 59, in applied_migrations
self.ensure_schema()
File "/Library/Python/2.7/site-packages/Django/db/migrations/recorder.py", line 49, in ensure_schema
if self.Migration._meta.db_table in self.connection.introspection.get_table_list(self.connection.cursor()):
File "/Library/Python/2.7/site-packages/Django/db/backends/__init__.py", line 165, in cursor
cursor = self.make_debug_cursor(self._cursor())
File "/Library/Python/2.7/site-packages/Django/db/backends/__init__.py", line 138, in _cursor
self.ensure_connection()
File "/Library/Python/2.7/site-packages/Django/db/backends/__init__.py", line 133, in ensure_connection
self.connect()
File "/Library/Python/2.7/site-packages/Django/db/utils.py", line 94, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/Library/Python/2.7/site-packages/Django/db/backends/__init__.py", line 133, in ensure_connection
self.connect()
File "/Library/Python/2.7/site-packages/Django/db/backends/__init__.py", line 122, in connect
self.connection = self.get_new_connection(conn_params)
File "/Library/Python/2.7/site-packages/Django/db/backends/postgresql_psycopg2/base.py", line 134, in get_new_connection
return Database.connect(**conn_params)
File "/Library/Python/2.7/site-packages/psycopg2/__init__.py", line 164, in connect
conn = _connect(dsn, connection_factory=connection_factory, async=async)
Django.db.utils.OperationalError: could not connect to server: Connection refused
Is the server running on Host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
Postgresに接続しようとすると:
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
settings.py:
DATABASES = {
'default': {
'ENGINE': 'Django.db.backends.postgresql_psycopg2',
'NAME': 'beerad',
'USER': 'bli1',
'PASSWORD': '',
'Host': '127.0.0.1',
'PORT': '5432',
}
}
いくつかの問題があります。
service postgresql status
PostgresSQlがポート5432で実行されていません。Sudo netstat -nl | grep postgres
ユーザー名、パスワード、データベース名など、dbに接続しようとして何か問題があります。それらがpostgresが接続するようにあなたに要求するものであり、それがアクセスしたいdb_nameであることを確認してください。
Postgresのpostmaster.pidの問題。シャットダウンが不適切に行われたために発生する可能性があります。サーバーの起動を許可しないpid aliveを思い出させます。修正するには、次のことを行う必要があります。
* rm /usr/local/var/postgres/postmaster.pid
* pg_resetxlog -f /usr/local/var/postgres
この後、postgresのrunserverを作成すると、適切に実行されるはずです。
Mac OSXのヘルプ: Mac OS XでPostgreSQLサーバーを起動する方法
Windowsの場合
検索バーに移動して、「Open psql
"を押してEnterキーを押します。
画面が開いたら、Django project。
すべてのpostgresプロセスを強制終了してください。 MACのImと、ubuntusフォーラムで見つけたこのソリューションは、実際に機能します。
https://askubuntu.com/questions/547434/how-to-nicely-stop-all-postgres-processes
AWSインスタンスに移動->セキュリティグループ->ソース->インバウンド-> :: 0
次のコマンドは私のために動作します(Windows)-
pg_ctl -D "C:\Program Files\PostgreSQL\11\data" restart
その後、サーバーを再度実行します
python manage.py runserver