postgresql 9.0에서 스트리밍 복제를 실행하려고합니다. 나는 링크에서 언급 한 단계를 따르고 있습니다 : http://brandonkonkle.com/blog/2010/oct/20/postgres-9-streaming-replication-and-django-balanc/핫 스트리밍 복제를 구성하는 동안 postgresql 9.0에서 오류가 발생했습니다.
postgresql에서 보관 명령을 실행하려고하면 끝없이 기다리는 경고 메시지가 나타납니다. 나는 다음과 같은 순서로 명령을 실행 오전 : 나는 다음과 같은 출력을 얻을이를 위해
SELECT pg_start_backup('base_backup');
cd /var/lib/postgresql/9.0/
sudo tar -cjf ~/postgres-data.tar.bz2 main
SELECT pg_stop_backup();
:
NOTICE: pg_stop_backup cleanup done, waiting for required WAL segments to be archived
WARNING: pg_stop_backup still waiting for all required WAL segments to be archived (60 seconds elapsed)
HINT: Check that your archive_command is executing properly. pg_stop_backup can be cancelled safely, but the database backup will not be usable without all the WAL segments.
WARNING: pg_stop_backup still waiting for all required WAL segments to be archived (120 seconds elapsed)
HINT: Check that your archive_command is executing properly. pg_stop_backup can be cancelled safely, but the database backup will not be usable without all the WAL segments.
이 더 계속 유지하고 경고가 끝나지 않아. 누군가이 문제에 직면했는지 알려주십시오.