BBahmni 한국어 매뉴얼검색
한국어 번역 완료
한국어English

Troubleshooting postgresql replication issues

This document will help you understand how you can troubleshoot issues pertaining to postgresql replication.

  • 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
원문 정보

Bahmni Wiki · CC BY-SA 4.0

원문 보기 ↗