我尝试将我的本地MongoDB带到地图集云。 我下载了mongomirror,放入文件夹中,并使用以下命令制作了一个run.command文件:
#!/bin/bash
mongomirror --host "localsource:27017"
--ssl
--username "login"
--password "pass"
--authenticationDatabase "admin"
--destination "target:27017"
--destinationUsername "login"
--destinationPassword "pass"
将mongomirror
run.command
如果我开始运行run.command,则会收到消息mongomiror:找不到命令
这里有什么缺陷?