我在两台机器上运行两个CouchDB数据库(SystemA和SystemB)。他们的网址是
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"
}'
要传输的数据在哪个端口上?
答案 0 :(得分:1)
复制使用源数据库的_changes
个提要,因此它会像任何其他进程一样访问数据库。因此港口是5984。