Hi all,<br><br>I´ve done a few testing in pg 9.1 with <span class="il">pgpool</span> 3.1.2 as describe on <br><a href="http://www.pgpool.net/pgpool-web/contrib_docs/simple_sr_setting2_3.1/index.html" target="_blank">http://www.<span class="il">pgpool</span>.net/<span class="il">pgpool</span>-web/contrib_docs/simple_sr_setting2_3.1/index.html</a><br>

<br>Everything worked except that the slave missed some wal segments.<br><br>So, i´ve done a few steps more and i´d like to share with you:<br><br>In postgresql.conf<br>wal_keep_segments = 10<br><br>10 is just a simple number and needs to be adjusted according to your load<br>

<br>Before starting the slave, and from <a href="http://wiki.postgresql.org/wiki/Streaming_Replication" target="_blank">http://wiki.postgresql.org/wiki/Streaming_Replication</a><br><pre>$ psql -c &quot;SELECT pg_start_backup(&#39;label&#39;, true)&quot;
$ rsync -a ${PGDATA}/ standby:/srv/pgsql/standby/ --exclude postmaster.pid
$ psql -c &quot;SELECT pg_stop_backup()&quot;</pre><br>That´s it, worked great for me on debian 6. The only thing is that in pgpooladmin both,<br>primary and slave, servers appears on node info as &quot;              Running as primary server&quot;<br>

<br>Regards