Düz eski akış çoğaltma. PostgreSQL: 9.2.7 Windows 8.1 64 bit
Birincil ve ikincil kümelerim aynı windows makinesinde. Zaten pg_start_backup () ve her şeyi yaptım , böylece her iki düğüm de aynı verileri var.
Şimdi çoğaltma ile ilgili sorun köle sunucudan "çoğaltma bağlantısı" birincil sunucuya bağlanmak değil ama psql kabuk kullanarak aynı params kullanarak bağlanabilirsiniz. Sanırım suçlu köle kurtarma.conf bağlantı dizesidir:
primary_conninfo = 'host = 127.0.0.1 port = 5432 user = postgres password = postgres'
Yerel günlük, 0.0.0.0, lan IP her şeyi denedim ama pg log diyor ki:
FATAL: could not connect to the primary server: FATAL: no pg_hba.conf entry for replication connection from host "127.0.0.1", user "postgres", SSL off
Şimdi Efendimin pg_hba.conf dosyasına bakın:
host all all 0.0.0.0/0 trust
host all postgres 127.0.0.1/0 trust
# IPv6 local connections:
host all all ::1/128 md5
hostnossl all postgres 127.0.0.1/32 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5
Sanki her olası bağlantıya izin verdim ama köle bağlanamıyor. Yardım edebilir misin?