postgresqlへ接続が出来ない
【事象】
Windows10のA端末でpostgresqlをインストールし、Windows10のB端末からグローバルIPを用いて接続したいのですがConnection time outとなりうまく接続することが出来ません。
外部から接続を許可するにあたって、ネットワーク設定、ファイアウォール、pg_hba.conf、postgresql.conf設定後、サービスからpostgresqlの再起動を行いました。
添付画像にポート番号13303も入っていますがあまり気にしないでください。(はじめは5432ではなく13303で試していたので・・・)
ローカルのIPアドレスから接続することが確認でき、ポート5432が開放されていることも確認出来ています。
グローバルIPからの指定の場合は接続できない状況です。
# TYPE DATABASE USER ADDRESS METHOD # IPv4 local connections: #host all all 127.0.0.1/32 md5 host all all all password # IPv6 local connections: host all all ::1/128 md5 # Allow replication connections from localhost, by a user with the # replication privilege. host replication all 127.0.0.1/32 md5 host replication all ::1/128 md5
postgresql.conf
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)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/15 08:31
2020/05/15 09:08
2020/05/15 09:49