本文介绍了如何mongoimport数据到已部署的流星应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
更新:此帖子适用于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:\mongodb\bin>mongoimport -h meteor.m0.mongolayer.com:27017 -u client -p e63aaade-xxxx-yyyy-93e4-de0c1b80416f --db meteor --collection kanji --type csv --file c:\kanjifinder\kanjifinder.csv --headerline
推荐答案
确定.这有助于: 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:\kanjifinder\kanjifinder.csv --headerline
这篇关于如何mongoimport数据到已部署的流星应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!