I'm trying to create Postgresql 9.1 hot-standby using following steps:
- Configured 2 virtual linux machines. Master's ip: 10.10.10.1, Standby's ip: 10.10.10.2. Ping test passed.
- Restored the same db backup on both.
Edited pg_hba on master. Added line:
host replication postgres 10.10.10.2/32 md5
Edited Master's postgresql.conf:
listen_address = '*' wal_level = hot_standby max_wal_senders = 3
Created recovery.conf on Standby:
standby_mode = 'on' primary_conninfo = 'host=10.10.10.1'
After adding recovery.conf I fail to start Standby server. In startup log I get an error:
> could not create IPv6 socket
Did I missed something?