From 60db8d6adb088ceaefc96b08fbbbea4e4fadfefb Mon Sep 17 00:00:00 2001 From: Oleksii Kliukin Date: Fri, 24 Apr 2015 16:23:38 +0200 Subject: [PATCH] Allow connections to the host's own IP address from the host itself. --- helpers/postgresql.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpers/postgresql.py b/helpers/postgresql.py index b6c52c19..ce6be64b 100644 --- a/helpers/postgresql.py +++ b/helpers/postgresql.py @@ -146,6 +146,8 @@ class Postgresql: f = open("%s/pg_hba.conf" % self.data_dir, "a") f.write("host replication %(username)s %(network)s md5" % {"username": self.replication["username"], "network": self.replication["network"]}) + # allow TCP connections from the host's own address + f.write("\nhost postgres postgres %(network)s/32 trust\n" % {"network": self.host}) f.close() def write_recovery_conf(self, leader_hash):