Install latest version of MongoDB on Raspberry Pi 3 [closed]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-1
down vote

favorite












I would like to install the latest version of MongoDB on my rpi 3 but apt-get install the version 2.4.



How can I install the latest?







share|improve this question














closed as unclear what you're asking by roaima, Jeff Schaller, GAD3R, Jesse_b, Hauke Laging Apr 1 at 0:00


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
    – roaima
    Mar 31 at 15:26















up vote
-1
down vote

favorite












I would like to install the latest version of MongoDB on my rpi 3 but apt-get install the version 2.4.



How can I install the latest?







share|improve this question














closed as unclear what you're asking by roaima, Jeff Schaller, GAD3R, Jesse_b, Hauke Laging Apr 1 at 0:00


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
    – roaima
    Mar 31 at 15:26













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I would like to install the latest version of MongoDB on my rpi 3 but apt-get install the version 2.4.



How can I install the latest?







share|improve this question














I would like to install the latest version of MongoDB on my rpi 3 but apt-get install the version 2.4.



How can I install the latest?









share|improve this question













share|improve this question




share|improve this question








edited Mar 31 at 13:34









Yurij Goncharuk

2,2582521




2,2582521










asked Mar 31 at 13:06









kamal951

11




11




closed as unclear what you're asking by roaima, Jeff Schaller, GAD3R, Jesse_b, Hauke Laging Apr 1 at 0:00


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.






closed as unclear what you're asking by roaima, Jeff Schaller, GAD3R, Jesse_b, Hauke Laging Apr 1 at 0:00


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.













  • What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
    – roaima
    Mar 31 at 15:26

















  • What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
    – roaima
    Mar 31 at 15:26
















What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
– roaima
Mar 31 at 15:26





What do you define as "the latest" version? The latest one in a RPi repository? The bleeding-edge development version somewhere in github-land? Some other version?
– roaima
Mar 31 at 15:26











1 Answer
1






active

oldest

votes

















up vote
1
down vote













You need a 64bit OS, So copy that to your sdcard first.



  • bionic-server-arm64.squashfs

  • Fedora-Server-27-1.6.aarch64.raw.xz

  • ArchLinuxARM-aarch64-latest.tar.gz

  • etc

Then you can install(3.2) from a repository



apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1


or install(3.6) from source;



apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install





share|improve this answer






















  • What do I need to copy on my sdcard?
    – kamal951
    Mar 31 at 13:35










  • Which OS do you recommend me to take?
    – kamal951
    Mar 31 at 14:35










  • Yes, the latest Raspbian is armv7l, so a 32 bit.
    – kamal951
    Mar 31 at 15:36










  • I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
    – Jeff Schaller
    Mar 31 at 16:28










  • There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
    – peterh
    Mar 31 at 17:21

















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













You need a 64bit OS, So copy that to your sdcard first.



  • bionic-server-arm64.squashfs

  • Fedora-Server-27-1.6.aarch64.raw.xz

  • ArchLinuxARM-aarch64-latest.tar.gz

  • etc

Then you can install(3.2) from a repository



apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1


or install(3.6) from source;



apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install





share|improve this answer






















  • What do I need to copy on my sdcard?
    – kamal951
    Mar 31 at 13:35










  • Which OS do you recommend me to take?
    – kamal951
    Mar 31 at 14:35










  • Yes, the latest Raspbian is armv7l, so a 32 bit.
    – kamal951
    Mar 31 at 15:36










  • I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
    – Jeff Schaller
    Mar 31 at 16:28










  • There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
    – peterh
    Mar 31 at 17:21














up vote
1
down vote













You need a 64bit OS, So copy that to your sdcard first.



  • bionic-server-arm64.squashfs

  • Fedora-Server-27-1.6.aarch64.raw.xz

  • ArchLinuxARM-aarch64-latest.tar.gz

  • etc

Then you can install(3.2) from a repository



apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1


or install(3.6) from source;



apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install





share|improve this answer






















  • What do I need to copy on my sdcard?
    – kamal951
    Mar 31 at 13:35










  • Which OS do you recommend me to take?
    – kamal951
    Mar 31 at 14:35










  • Yes, the latest Raspbian is armv7l, so a 32 bit.
    – kamal951
    Mar 31 at 15:36










  • I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
    – Jeff Schaller
    Mar 31 at 16:28










  • There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
    – peterh
    Mar 31 at 17:21












up vote
1
down vote










up vote
1
down vote









You need a 64bit OS, So copy that to your sdcard first.



  • bionic-server-arm64.squashfs

  • Fedora-Server-27-1.6.aarch64.raw.xz

  • ArchLinuxARM-aarch64-latest.tar.gz

  • etc

Then you can install(3.2) from a repository



apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1


or install(3.6) from source;



apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install





share|improve this answer














You need a 64bit OS, So copy that to your sdcard first.



  • bionic-server-arm64.squashfs

  • Fedora-Server-27-1.6.aarch64.raw.xz

  • ArchLinuxARM-aarch64-latest.tar.gz

  • etc

Then you can install(3.2) from a repository



apt show mongodb-server 2>/dev/null | grep Version
Version: 1:3.2.11-2+deb9u1


or install(3.6) from source;



apt install git python-pip
mkdir /opt/mongodb
cd /opt/mongodb
wget http://prdownloads.sourceforge.net/scons/scons-3.0.1.tar.gz
tar -xzf scons-3.0.1.tar.gz
cd scons-3.0.1
python setup.py install
cd ../
git clone --depth 1 https://github.com/mongodb/mongo.git --branch v3.6
cd mongo
pip install -r buildscripts/requirements.txt
scons-3.0.1 core MONGO_VERSION=3.6.0-$(git rev-parse --short HEAD)
scons-3.0.1 install






share|improve this answer














share|improve this answer



share|improve this answer








edited Apr 1 at 22:54

























answered Mar 31 at 13:21









user1133275

2,245412




2,245412











  • What do I need to copy on my sdcard?
    – kamal951
    Mar 31 at 13:35










  • Which OS do you recommend me to take?
    – kamal951
    Mar 31 at 14:35










  • Yes, the latest Raspbian is armv7l, so a 32 bit.
    – kamal951
    Mar 31 at 15:36










  • I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
    – Jeff Schaller
    Mar 31 at 16:28










  • There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
    – peterh
    Mar 31 at 17:21
















  • What do I need to copy on my sdcard?
    – kamal951
    Mar 31 at 13:35










  • Which OS do you recommend me to take?
    – kamal951
    Mar 31 at 14:35










  • Yes, the latest Raspbian is armv7l, so a 32 bit.
    – kamal951
    Mar 31 at 15:36










  • I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
    – Jeff Schaller
    Mar 31 at 16:28










  • There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
    – peterh
    Mar 31 at 17:21















What do I need to copy on my sdcard?
– kamal951
Mar 31 at 13:35




What do I need to copy on my sdcard?
– kamal951
Mar 31 at 13:35












Which OS do you recommend me to take?
– kamal951
Mar 31 at 14:35




Which OS do you recommend me to take?
– kamal951
Mar 31 at 14:35












Yes, the latest Raspbian is armv7l, so a 32 bit.
– kamal951
Mar 31 at 15:36




Yes, the latest Raspbian is armv7l, so a 32 bit.
– kamal951
Mar 31 at 15:36












I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
– Jeff Schaller
Mar 31 at 16:28




I don’t know if this is the start of an answer, but it certainly doesn’t include installing the latest mongodb...
– Jeff Schaller
Mar 31 at 16:28












There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
– peterh
Mar 31 at 17:21




There is 32-bit mongodb, only its maximal db size is limited to 32 bits.
– peterh
Mar 31 at 17:21


Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay