Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

  • Check if postgresql replication is running

    ps -ef | grep sender
    ps -ef | grep receiver
  • Check replication replay on slave

    select pg_last_xlog_receive_location();
    select pg_last_xlog_replay_location();
  • Restart replication on slave if needed (you do this by restarting postgresql on slave)

    sudo service postgresql-9.2 restart
  • No labels