同じ問題に直面しましたが、packagefilesectionコマンドを変更することで修正しました。私が従った全体のステップは次のとおりでした:
最初に次のコマンドを試してください:sudo apt-get install -y mongodb
これはUbuntuによって提供される非公式のmongodbパッケージであり、MongoDBによって維持されておらず、MongoDBの公式にサポートされているパッケージと競合します。
上記のコマンドが機能しない場合は、次のいずれかの手順で問題を修正できます。
#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
これがあなたにも役立つことを願っています。このMongoDBをフォローできます
更新 Uubuntu 12.04
の最新バージョンをインストールする場合は、上記の手順でmongodb2.6バージョンがインストールされます。 次に、上記のstep 2
を置き換えます その代わりに次の指示に従ってください:
#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
Ubuntu 14.04
を使用している場合 次に、上記のstep 2
の代わりに次の手順を使用します
#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