Questions tagged [mongodb]

a cross-platform document-oriented database.

34 questions
19
votes
2 answers

MongoDB on Raspbian

So, I already have a Raspberry Pi running with Raspbian, but I can't seem to install MongoDB. I followed some tutorials (here and here) with pre-built mongo installations, but those all failed. Everywhere I see there is the suggestion that I should…
user1226868
  • 321
  • 1
  • 2
  • 6
10
votes
2 answers

How can I build MongoDB?

It seems to me like there's currently two way to go about this: https://github.com/skrabban/mongo-nonx86 https://github.com/RickP/mongopi I settled for the mongo-nonx86 fork. I installed the dependencies as described in Install Mongodb in…
Oliver Salzburg
  • 1,794
  • 1
  • 19
  • 33
10
votes
3 answers

Official MongoDB Repo for ARM Processor for Debian base

Is there an official MongoDB repo for the Raspberry Pi Following: http://docs.mongodb.org/manual/tutorial/install-mongodb-on-debian/ Got this issue: W: Failed to fetch http://downloads-distro.mongodb.org/repo/debian-sysvinit/dists/dist/Release …
Phill Pafford
  • 239
  • 1
  • 3
  • 9
6
votes
3 answers

Installing MongoDB On Raspberry Pi 2

i have been trying for 2 days to get MongoDB installed on my raspberry pi but i am unable to get it to work. i know that the official mongo isn't for for ARM, but there is a fork i found at: https://github.com/skrabban/mongo-nonx86 but it fails top…
X0r0N
  • 173
  • 1
  • 8
5
votes
3 answers

Unable to install mongodb 3.4 on Pi 3

I have been trying to install the latest version of mongodb on my Pi 3. I currently am running the latest version of node (8.0.0) and am running Raspbian lite - Jessie (8). I have been following this install…
LandSharks
  • 153
  • 1
  • 1
  • 3
3
votes
0 answers

service for mongodb 3.4 server on SLES 12 SP2 Doesn't start(Raspberry Pi 3)

The link below was the source: https://software.opensuse.org/download.html?project=server:database&package=mongodb It was the only mongodb 3.4 which could be installed correctly but unfortunately it's service does not start with error saying "Cannot…
Posse
  • 131
  • 2
3
votes
2 answers

How do I install MongoDB on Ubuntu MATE 16.04 LTS?

I am following this guide on how to install mongoDB on Ubuntu MATE 16.04 LTS on my Raspberry PI 3 and I get the following error when I run "sudo apt-get update" N: Skipping acquire of configured file 'multiverse/binary-armhf/Packages' as…
archLucifer
  • 133
  • 1
  • 3
3
votes
1 answer

Mongodb cross compilation on linux for Raspberry Pi

I have raspberry pi model B. I want to build mongodb on my Linux system and want to copy build onto raspberry pi. I am using mongo-non86 to build mongodb. I have changed compilers to compile it with arm-linux-gnueabihf-gcc and…
S S
  • 131
  • 6
2
votes
4 answers

Upgrade MongoDB past 2.4.10

It's 2018, and the current version of MongoDB for the Raspbian package manager is only version 2.4.10. This is a problem, because this old MongoDB version is becoming so stale that it won't work with the latest drivers. I can't connect my NoSQL…
steampowered
  • 163
  • 1
  • 8
2
votes
2 answers

MongoDB 3.2 or higher on Raspberry Pi 3

I'm trying to update my mongodb version on my raspberry pi. I've runned following commands $ sudo apt-get install mongodb So far so good. I can access the mongo shell by typing mongo in the console. I can start the mongodb with the service: $ sudo…
crellee
  • 121
  • 1
  • 2
2
votes
2 answers

Failed to start mongod.service: no such file or directory

I'm trying to install MongoDB on Jessie. (Never used MongoDB before). Following this tutorial I did the following: apt-get update apt-get upgrade apt-get install mongodb-server -y service mongod start But that gives me this error: Failed to start…
Jayy
  • 566
  • 2
  • 6
  • 19
1
vote
0 answers

Running mongodb as as service increases boot time by 30 seconds

Title says it all. I have an RPi 3 with Raspbian that has a web app running at start up in chromium. It took 20-30 seconds from powering on to the app appearing before I added mongo, and after I integrated mongo and ran it as a service: sudo…
1
vote
0 answers

MongoDB 3+ on Pi 3

I recently tried to run the binaries for mongodb from the website of mongopi without much succes... Despite setting the path as follow export PATH=/home/pi/mongo34_arm64_rPi3/bin:$PATH I am getting the following Failed to start mongodb.service:…
1
vote
1 answer

MongoDB's Date() method returning Unix Epoch instead of actual date

I have a node app running on a Comfile Pi, which is a RPi Compute Module 3 mounted in the back of a touch screen interface. I'm gathering and storing data using MongoDB, which is running in the background as a service. On each document that I…
1
vote
1 answer

Can't connect to mongodb on pi locally - can connect remotely

I have mongodb installed on my pi successfully for a few months. Since yesterday, I've not been able to connect to it from the local machine, but bizarrely I can connect to it from another machine on the same network. If I connect locally, I get…
mccarthyj
  • 173
  • 2
  • 7
1
2 3