2020年10月15日
PostgreSQL ODBC 関係のエラーにつきまして(デジタルドルフィンズサーバー)
ERROR [08001] FATAL: no pg_hba.conf entry for host "fe80::910f:7ff8:cfe7:e459%24", user "dd_odbc", database "dd", SSL off
LAN からの接続を有効にする場合は、下記内容を pg_hba.conf へ追記します。
LAN からの接続を有効にする場合は、下記内容を pg_hba.conf へ追記します。
# IPv4 local connections: host all all 127.0.0.1/32 md5 host all all 10.0.0.0/8 md5 host all all 172.16.0.0/12 md5 host all all 192.168.0.0/16 md5 host all all 169.254.0.0/16 md5 # IPv6 local connections: host all all ::1/128 md5 host all all fd00::/8 md5 host all all fe80::/10 md5
環境により異なりますが、通常以下のファイルパスにあります:
C:\Program Files (x86)\PostgreSQL\8.2\data\pg_hba.conf
C:\Program Files (x86)\PostgreSQL\9.6\data\pg_hba.conf