Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're looking to create regular backups of a couchdb database, to ship offsite. What's the least intrusive way to obtain these - ideally without interrupting or significantly slowing down performance on the existing database server?

share|improve this question

3 Answers

up vote 9 down vote accepted

You could just copy the CouchDB database file. Read more about this here.

share|improve this answer

Why not use CouchDB replication to replicate the production database to another host where the backups can be performed?

share|improve this answer
1  
This will not copy the _security object since it is considered to be metadata about that DB URL and not metadata about the contents of the DB. If you need to remember your admin and reader names and roles, you must back that up too. – JasonSmith Feb 28 '11 at 14:24

You can also use couchdb-dump and couchdb-load for Backup and restore to normal text files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.