PythonからPostgreSQLに接続ができません。
Q&A
Closed
解決したいこと
pythonからPostgreSQLに接続したいのですが、エラーが出て接続ができません。
解決方法をご教授していただきたいです。
発生している問題・エラー
ould not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
connection = psycopg2.connect(
^^^^^^^^^^^^^^^^^
psycopg2.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?
該当するソースコード
import psycopg2
path = '127.0.0.1'
port = '5432'
dbname = ''
user = ''
password = ''
conText = 'host={} port={} dbname={} user={} password={}'
conText = conText.format(path,port,dbname, user, password)
connection = psycopg2.connect(conText)
cur = connection.cursor()
自分で試したこと
postgresql.conf
pg_hba.conf
の編集
0