How can I replicate from a secured CouchDB database?

I am using Fauxton in a test environment to replicate from our test server to a local server. I went to the test server in a different browser tab, but replication still doesn't work, even though the cookie exists.

+3


source to share


1 answer


The solution is to add your username and password to the remote replication URI:

https://user:password@testcouchdb.mycompany.com:7984/mydb

      



See http://wiki.apache.org/couchdb/Replication#Authentication for details .

(This approach should be considered or avoided in a production environment.)

+5


source







All Articles