Questions tagged [mlab]

MongoLab (Rebranded as mLab) is a fully-managed MongoDB Database-as-a-Service (DBaaS) platform that automates the operational aspects of running MongoDB in the cloud.

MongoLab is a fully-managed cloud database service featuring highly-available MongoDB databases, automated backups, web-based tools, 24/7 monitoring, and expert support. By hosting MongoDB on MongoLab’s Database-as-a-Service (DBaaS) platform, developers and IT professionals are free to focus their attention on product development instead of operations.

MongoLab runs on all the major cloud platforms, including Amazon, Joyent, Rackspace and Windows Azure, and has partnered with all of the major Platform-as-a-Service (PaaS) providers to enable seamless integration with the application tier.

Headquartered in San Francisco, MongoLab is backed by premier venture and angel investors including Foundry Group, Baseline Ventures, GRP Partners, Freestyle Capital, and David Cohen of TechStars.

Learn more at https://mlab.com/

852 questions
0
votes
1 answer

Heroku Project with node express and mongoLAB

How do you connect and create the rest api from node express to work with mongolab on heroku ?
Brett
  • 1,717
  • 1
  • 26
  • 38
0
votes
1 answer

Heroku Project with rails and mongoLAB

I have a quick question. Iam new to rails and heroku too. I have recently downloaded a open source code from the following git repository git://github.com/barmstrong/ribbot.git. I am running rails with mongo db and have had the environment set up.…
0
votes
1 answer

How manage multiple DB with MongoLab and Heroku?

I have a project hosted on Heroku using Mongolab for storing data (MongoDB). I need to create 2 different DB instances: one for prod, one for dev. Any idea how can I do and how I can tell my code which one to use? Thanks
zobi8225
  • 2,258
  • 4
  • 20
  • 20
-1
votes
1 answer

pymongo.errors.OperationFailure: Authentication failed when deploying chatbot on Heroku

I tried to deployed a chatbot which involves the application of MongoDB but I am stuck by this bug all day (figure 1). I cannot what is wrong because I follow the doc strictly and check the config vars over and over again to make sure all of them…
Memphis Meng
  • 1,267
  • 2
  • 13
  • 34
-1
votes
1 answer

MERN exercise app works in local but cannot connect to MLab after deployed to Heroku

Here is my server.js // tools we need const express = require('express'); const cors = require('cors'); // mongoose helps connect to mongodb database const mongoose = require('mongoose'); // setting up server const app = express(); const PORT =…
Scott
  • 121
  • 1
  • 2
  • 9
-1
votes
1 answer

Electron and MLab

I am curious about the use of mLab with Electron. Reading this article it seems like mongo cannot be bundled into an electron application. I am wondering what that mean and if mLab would be the same thing. Does bundling mean for mongo configs that…
Josh Bowden
  • 892
  • 3
  • 12
  • 28
-1
votes
1 answer

Connect Lambda to mLab

I would like to read a collection in mLab(mongoDB) and get result document based on the request from AWS LAMBDA function. I could write a nodeJS function code snippet and whatever timeout I set it results in Task timed out after *** seconds Any…
Selvam Raju
  • 196
  • 4
  • 14
-1
votes
1 answer

How to query MongoDB with regex?

humans.json { "_id": "22YAE7bEXdST9MyrZ", "createdAt": { "$date": "2016-11-22T15:09:25.968Z" }, "abilities": { "power": { "mana":78, "chakra":0 "energy":60 } }, …
LisaN
  • 165
  • 2
  • 2
  • 13
-1
votes
3 answers

authendication failed when connecting to mongodb in mlab

I am trying to connect to my mongodb in mlab.com using flask but when I run my flask script I am getting Authentication failed error, please help. my code: from flask import Flask, jsonify, request from flask_pymongo import PyMongo app =…
Pyd
  • 6,017
  • 18
  • 52
  • 109
-1
votes
1 answer

Getting back updated object mlab api PUT

I am trying to modify object using mlab api through ajax call.Following is the code used: query="{'email':'"+localStorage.getItem("email") +"','restore':'yes'}" object={"$set":{'restore':"no"}} $.ajax({ url:…
-1
votes
1 answer

Retrofit Put Request for Mlab

Hi I'm trying to send a PUT request using Retrofit that uses $addToSet to my Mlab Server. I can do this using Postman but I'm having trouble doing it using Retrofit. The collection looks like: [ { "_id": { "$oid":…
Paul
  • 33
  • 6
-1
votes
1 answer

Mongo add document in the middle of collection

When I insertOne() document in the collection Mongo add the document between the first and last document. It is expected to be added at the end, right? But for me ideally would be to add the document at the beginning, for example as .unshift() JS…
Denis Lapadatovic
  • 305
  • 1
  • 9
  • 16
-1
votes
1 answer

Parse Server migration without tool

I'm working to revive an app that was originally hosted on Parse. I have access to a Bitbucket with the app code but the database itself was not migrated before Parse.com shut down. I would like to run the app through Parse Server (using mlab and…
-1
votes
2 answers

How do I mongo restore using an input directory with multiple local dbs in /data/db/?

I have 4 local dbs in my /data/db directory $ mongo MongoDB shell version: 3.2.9 connecting to: db-A $ show dbs db-A 0.00gb db-B 0.02gb db-C 0.08gb db-D 0.00gb When I try to run: $ mongorestore -h dsxxxxx.mlab.com:xxxxx -d -u
-1
votes
3 answers

mongorestore always returns connection error

I have successfully performed a mongodump command of my Heroku server with an mLab database. This is the code i used: mongodump --host -d -u -p --port 27175 The dump completed successfully. Now i am trying to…
1 2 3
56
57