问题描述
更新:此帖子适用于meteor.com 免费托管,该托管已关闭并替换为付费Meteor 托管服务Galaxy
我正在使用这个命令
C:kanjifinder>meteor mongo --url kanjifinder.meteor.com
获取对我部署的 mongo 应用程序的访问凭据,但我无法让 mongoimport
使用凭据.我想我只是不完全明白哪个部分是 username
、password
和 client
.你能帮我分解一下吗?
to get access credentials to my deployed mongo app, but I can't get mongoimport
to work with the credentials. I think I just don't exactly understand which part is the username
, password
and client
. Could you break it down for me?
来自服务器的结果(我对其进行了修改以混淆实际值):
result from server (I modified it to obfuscate the real values):
mongodb://client:[email protected]:27017/kanjifinder_meteor_com
我的 mongoimport 尝试(验证失败):
my mongoimport attempt (fails authentication):
C:mongodbin>mongoimport -h meteor.m0.mongolayer.com:27017 -u client -p e63aaade-xxxx-yyyy-93e4-de0c1b80416f --db meteor --collection kanji --type csv --file c:kanjifinderkanjifinder.csv --headerline
推荐答案
好的,明白了.这有助于:http://docs.mongodb.org/manual/reference/connection-string/一个>
OK got it. This helped:http://docs.mongodb.org/manual/reference/connection-string/
mongoimport --host meteor.m0.mongolayer.com --port 27017 --username client --password e63aaade-xxxx-yyyy-93e4-de0c1b80416f --db kanjifinder_meteor_com --collection kanji --type csv --file c:kanjifinderkanjifinder.csv --headerline
这篇关于如何 mongoimport 数据到部署的流星应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!