代码之家  ›  专栏  ›  技术社区  ›  Tal Rofe

连接到MongoDB主机

  •  0
  • Tal Rofe  · 技术社区  · 7 年前

    解决了的!

    我正在尝试连接到mlab主机上的mongodb。 到目前为止,我使用了本地主机:

    client = new MongoClient("mongodb://localhost:27017");
    DB = client.GetDatabase("surffingsite");
    

    一旦我开始使用mlab主机,我就尝试:

    client = new MongoClient("mongodb://<dbuser>:<dbpassword>@ds239071.mlab.com:39071/surffingsite");
    DB = client.GetDatabase("surffingsite");
    

    但我有问题。。我做错了吗?我忘了另外做什么了吗?

    0 回复  |  直到 7 年前