我正在尝试将mongoDB用于我的应用。 我有2个数据库,并使用下一个代码连接:
var mongo_db =
mongojs("mongodb://xxxxx:xxxxx@some_adress/cat_mean_db",
["tasks"]);
如果我使用这个db
exeption: connection 0 to localhost:3000 closed
一切运行良好,但当我尝试在localhost上使用db时,我得到了{{1}}
本地数据库存在且用户为shure。
答案 0 :(得分:3)
关于NPM的mongoose文档:
注意:如果本地连接失败,请尝试使用127.0.0.1而不是localhost。有时,在更改本地主机名时可能会出现问题。
您应该尝试使用127.0.0.1
代替localhost
。