Eu enfrentei o mesmo problema, mas corrigi-o alterando o comando da seção do arquivo do pacote. Todo o passo que eu segui foi:
Primeiro tente com este comando:sudo apt-get install -y mongodb
Este é o pacote não oficial do mongodb fornecido pelo Ubuntu e não é mantido pelo MongoDB e entra em conflito com os pacotes suportados oficialmente pelo MongoDB.
Se o comando acima não funcionar, você poderá corrigir o problema por um dos procedimentos abaixo:
#Step 1: Import the MongoDB public key
#In Ubuntu 18.*+, you may get invalid signatures. --recv value may need to be updated to EA312927.
#See here for more details on the invalid signature issue: [https://stackoverflow.com/questions/34733340/mongodb-gpg-invalid-signatures][1]
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
#Step 2: Generate a file with the MongoDB repository url
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
#Step 3: Refresh the local database with the packages
sudo apt-get update
#Step 4: Install the last stable MongoDB version and all the necessary packages on our system
sudo apt-get install mongodb-org
#Or
# The unofficial mongodb package provided by Ubuntu is not maintained by MongoDB and conflict with MongoDB’s offically supported packages. Use the official MongoDB mongodb-org packages, which are kept up-to-date with the most recent major and minor MongoDB releases.
sudo apt-get install -y mongodb
Espero que isso funcione para você também. Você pode seguir este MongoDB
Atualizar A instrução acima instalará a versão mongodb 2.6, se você quiser instalar a versão mais recente para
Uubuntu 12.04
em seguida, basta substituir acima step 2
e siga as instruções abaixo em vez disso:#Step 2: Generate a file with the MongoDB repository url
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list
Se você estiver usando o
Ubuntu 14.04
em seguida, use a etapa abaixo em vez da step 2
acima #Step 2: Generate a file with the MongoDB repository url
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list