我有两个 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"
}'
数据在哪个端口上传输?