使用SSH并打开本地访问权限以保护Postgres数据库

时间:2019-05-02 08:54:27

标签: postgresql security

我使用SSH对限制了对服务器的访问,并使用pg_hba.conf允许任何人(host all all 127.0.0.1/32 trust)进行本地连接。配置文件中没有其他“主机”设置-只有“本地”设置。

这是一种安全的操作方式吗?离开信任选项是否会以某种方式创建后门?

local   all             postgres                                trust
local   all             all                                     peer
local   replication     all                                     peer
host    replication     all             127.0.0.1/32            md5
host    replication     all             ::1/128                 md5
host    all             postgres        127.0.0.1/32            trust

0 个答案:

没有答案