Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要允许两个 ip 连接到我的数据库:127.0.0.1 和 10.10.10.1。
我正在尝试使用:host all all 127.0.0.1/32,10.10.10.1 md5但它不起作用。
host all all 127.0.0.1/32,10.10.10.1 md5
怎么做?
将它们放在不同的行上:
host all all 127.0.0.1/32 md5 host all all 10.10.10.1/32 md5