I am playing around with CouchDB Replication and I'm wondering how to copy a local database of name "myDatabase" to a remote database on www.mySite.com that requires ssh access, and rename it to "myRemoteDatabase". How do I do that?
I am able to login to both the local and remote servers and run:
curl -X GET http://localhost:5984/
...and it will show me the result, but when I am on my local computer and I run:
curl -X GET http://my.ip.address:5984/
... or even
curl -X GET http://USER%[email protected]:5984/
I get:
curl: (7) couldn't connect to host
What am I missing in this picture?