前提・実現したいこと
PythonでPostgreSQLに接続するプログラムを作成したので、
CentoOS8で動かしたいのですが、
CentOS8上で動かすとエラーになってしまい動かすことができません。。。
ローカル環境では正常に動いていたのですが、
CentOS8にPythonのソースをのせて、
CentOS8にpostgreSQL(10.6)をインストールして
ユーザの作成、DBの作成等して、その情報をPythonのソース内に記載したのですが動きません。。。
ユーザ(postgrs)にもパスワードを設定しています。
追記
ちなみに以下のやり方でも接続ができません。以下のエラーが出てしまいます。。。。
psql -h ホスト名 -p ポート番号 -U ロール名 -d データベース名
psql: could not connect to server: Connection refused Is the server running on host "xxx.xxx.xx.xxx" and accepting TCP/IP connections on port 5432?
ご教授お願いいたします。
発生している問題・エラーメッセージ
[xxx@xxx py]$ python3.6 test.py Traceback (most recent call last): File "test.py", line 21, in <module> conn = psycopg2.connect(" user=" + users + " dbname=" + dbnames + " password=" + passwords) File "/usr/local/lib64/python3.6/site-packages/psycopg2/__init__.py", line 127, in connect conn = _connect(dsn, connection_factory=connection_factory, **kwasync) psycopg2.OperationalError: FATAL: Peer authentication failed for user "postgres"
該当のソースコード
python
1import random 2 3import psycopg2 4import tempfile 5from selenium import webdriver 6 7from selenium.webdriver.chrome.options import Options 8from requests.exceptions import Timeout 9 10# postgreSQLに接続 11users = 'postgres' 12dbnames = 'testdb' 13passwords = 'xxxx' 14conn = psycopg2.connect(" user=" + users + " dbname=" + dbnames + " password=" + passwords)
以下、サーバー上のDB情報です。
postgres=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- testdb | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
/var/lib/pgsql/data/postgresql.conf
↑でlisten_addressesを'*'にして port = 5432 にしてます(関係あるか分かりませんが)
#------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ # - Connection Settings - listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) port = 5432 # (change requires restart) max_connections = 100 # (change requires restart) #superuser_reserved_connections = 3 # (change requires restart) #unix_socket_directories = '/var/run/postgresql, /tmp' # comma-separated list of directories # (change requires restart)
補足情報(FW/ツールのバージョンなど)
CentoOS8
python3.6
postgreSQL(10.6)
追加
ちなみにpgadmin3にも接続できません。
Server doesn't listen The server doesn't accept connections: the connection library reports could not connect to server: Connection refused Is the server running on host "xxx.xxx.xx.xxx" and accepting TCP/IP connections on port 5432?
回答2件
あなたの回答
tips
プレビュー