mlab Questions
1
I am using mongoose to connect to my database in mongolab in my server.js file :
mongoose.connect('mongodb://MyUsername:[email protected]:89702/todo');
When i launch my server with node s...
1
I've been given a database hosted on mlab. I'm trying to download the files off of the database and onto my computer. How may I go about that? I should add I have never worked with mlab or MongoDB ...
Eggplant asked 31/3, 2018 at 9:43
2
Solved
I am using mLab on Heroku to host my database, and I forgot my database password.
I could not find anything about resetting my database password except for the following from the mLab website:
"it...
4
I have been trying so hard to filter my records by ID from MongoDB without success. The problem is with $oid
On MLAB my records look like :
{
"_id": {
"$oid": "57603891dcba0f7813102b3f"
},
"...
Peraza asked 17/6, 2016 at 0:44
4
Solved
I have a very simple Mlab account and I'm trying to connect via command line with this command:
mongo server_name.mlab.com:port/inventory -u <dbuser> -p <dbpassword>
but I keep runn...
2
Solved
I have been a mongochef user for a while, and setting up URI connections with mongochef is super easy. However this is not the case with robomongo.
How would someone connect their MLAB mongo...
1
Solved
I'm using Loopback for my server with the following setup:
"loopback": "^2.36.0",
"loopback-boot": "^2.23.0",
"loopback-component-explorer": "^2.4.0",
"loopback-component-storage": "^1.9.1",
"loo...
Crypto asked 2/11, 2016 at 0:32
3
I am having trouble making node.js and mongodb with mongolab work on heroku. I have read other issues like How do I setup MongoDB database on Heroku with MongoLab? and How do I manage MongoDB conne...
3
Solved
I am trying to connect to mongolab from terminal via below command
mongo ds061158.mongolab.com:61158/order_it -u <dbuser> -p <dbpassword>
I am getting the below error.
MongoDB she...
0
Can't connect to my mlab database if I'm behind a proxy.
Any idea how to achieve this? I've already googled and found no answer...
Here is my connection:
mongoose.connect(config.db.URI);
var db ...
1
Solved
I'm having some issues creating multiple compound indexes on one of my schemas in MongoDB. When using MongoLab, I know some indexes are not created when they are too long, due to a naming issue. So...
1
Solved
How do I structure my MongooseJS/MongoDB query to get total duplicates/occurrences of a particular field value? Aka: The total documents with custID of some value for all custIDs
I can do this man...
Gesticulatory asked 6/1, 2016 at 23:14
3
I have been interfacing with twitter using nodejs. I'm trying to log some important public user data in a mongolab mongodb database. For some reason I keep getting a "topology destroyed error" I'm ...
Schaffer asked 24/5, 2015 at 16:28
4
Solved
I am new to mongo. Recently created an account in mongoLab.
I am trying to connect to the database using the below statement.
mongo ds039487.mongolab.com:39487/webbies -u <dbuser> -p <d...
2
Solved
Is it secure to have data be sent to free database at mongolab from heroku app.
Data could be like emails, and preferences.
Or do you need ssl, i've read about mongodb ssl.
I've asked around bu...
1
Solved
matplotlib.mlab.psd(...) and scipy.signal.welch(...) both implement Welch's average periodogram method to estimate the power spectral density (PSD) of a signal. Assuming equivalent parameters are p...
Flyback asked 22/10, 2015 at 16:56
3
Solved
i am new in mongodb. i am creating free database using mongolab. my database name is enron.
connecting to mongo database using online mongoshell then error occure.
mongo ds033499.mongolab.com:334...
2
Solved
I'm new to node.js and mongodb.
I'm trying to create a schema for a User collection in a mongolab mongodb database from a node.js app with the code below. The code does not seem to be failing (at ...
2
My question is similar to the following, but is happening under slightly different circumstances.
Rails: execution expired on time_zone_select
My setup is:
Rails 3.2.13
Unicorn 4.6.2
Mongoid 3....
Aleciaaleck asked 24/5, 2013 at 18:16
1
Solved
I'm trying to connect the Mongo shell with Mongolab. I am using my mongolab username and password but it is giving an error: "Failed to connect to 54.81.180.188:56789."
My userName and password is...
Tallman asked 5/6, 2015 at 5:51
1
Solved
I've been trying to use mongoose (module for node.js and mongodb). And tried to get a connection with mongolab up and running. I tried the following at the top of my app.js file, but I couldn't see...
1
Solved
I'm trying to get mongodb query working. Collection comes in the format:
{
"_id": {
"$oid": "54651022bffebc03098b4567"
},
"browser": "ie",
"browser_version": "10.0 Desktop",
"os_version": "8",
"d...
3
Solved
The REST API for Mongolab is cool. I can use that for analytics in my website directly using the following javascript, provided on Mongolab's support page. Only if I can understand how the authenti...
Hockey asked 5/9, 2012 at 7:3
2
I am new to Python. I am trying to run MATLAB from inside Python using the mlab package. I was following the guide on the website, and I entered this in the Python command line:
from mlab.release...
Kelsy asked 18/12, 2013 at 13:33
6
Solved
I'm using nodejs and a mongoDB - and I'm having some connection issues.
Well, actually "wake" issues! It connects perfectly well - is super fast and I'm generally happy with the results.
My probl...
© 2022 - 2024 — McMap. All rights reserved.