Could not find mongodb-org package on Debian

I am trying to install MongoDB 3.0 on my Debian (wheezy) 32 bit server, and I canโ€™t understand what went wrong even though I was following MongoDB Installation :

apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 echo "deb http://repo.mongodb.org/apt/debian "$(lsb_release -sc)"/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list apt-get update apt-get install -y mongodb-org 

The fourth team still fails, even if the rest are successful:

 E: Unable to locate package mongodb-org 

I found the subjects of this question on Stackoverflow, but it was on Ubuntu so ...

EDIT:

lsb_release -sc gives wheezy

NO APT-GET SOLUTION:

Get the 32-bit version of Linux MongoDB for Linux here :

 wget https://fastdl.mongodb.org/linux/mongodb-linux-i686-3.0.2.tgz tar zxvf mongodb-linux-i686-3.0.2.tgz cp mongodb-linux-i686-3.0.2.tgz/bin/* /usr/bin 

Remember to change ownership / permissions.

+4
source share
4 answers
 sudo apt-get install -y mongodb 

I spent 2 hours on the same issue on a pure Debian x64. just try it. this is.

+7
source

How can you check by visiting

http://repo.mongodb.org/apt/debian/dists/wheezy/mongodb-org/3.0/main/binary-i386/

there are no packages, unlike

http://repo.mongodb.org/apt/debian/dists/wheezy/mongodb-org/3.0/main/binary-amd64/

I donโ€™t know why this is so, but one of them is collecting packages from the source code on your i386 machine.

+1
source

I was late, but:

 wget http://repo.mongodb.org/apt/debian/dists/wheezy/mongodb-org/3.4/main/binary-amd64/{package_vesion} sudo dpkg -i {package_version} 

But I could not find the x86 version, only x86_64.

0
source

I used the usual root command apt-get install mongodb-org without the -y option PS: this also works for Debian 9

-1
source

All Articles