Español/index.php/Pg ident

来自 PostgreSQL Wiki
跳转到导航跳转到搜索

在 pg_hba.conf 中配置 ident 访问

示例 1 .- 通过 tcp/ip (网络) 访问 test001 数据库,用户为 sales,来自 IP 为 192.168.1.3 的计算机,认证方法为 ident

host   test001    192.168.1.3    255.255.255.255    ident    sales

示例 2 .- 通过 tcp/ip (网络) 访问所有数据库,用户为 audit,来自 IP 为 192.168.1.4 的计算机,认证方法为 ident

host   all        192.168.1.4    255.255.255.255    ident    audit

pg_hba.conf 中的 ident 认证方法在 pg_ident.conf 中的配置

MAP       IDENT           POSTGRESQL_USERNAME
sales      jdrake           sales
sales      jworsley         sales
audit      auditor          sales
audit      auditor          postgres