我有两个在两台计算机(SystemA和SystemB)上运行的CouchDB数据库。他们的网址是
http://SystemA:5984/_utils
http://SystemB:5984/_utils
使用以下命令从SystemA复制到SystemB:
curl -H 'Content-Type: application/json'
-X POST http://SystemB:5984/_replicate -d
'{
"source": "http://SystemA:5984/foo",
"target": "foo"
}'
数据在哪个端口上传输?
最佳答案
复制使用源数据库的_changes
提要,因此它可以像访问其他任何进程一样访问数据库。因此端口是5984。