首页 文章

在Ubuntu 15.04下安装MongoDB时无法正确执行“apt-get update”

提问于
浏览
2

我正在尝试在我的Ubuntu 15.04上安装MongoDB,我完成了以下步骤:

  • 导入MongoDB公共GPG密钥:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10

  • 创建/etc/apt/sources.list.d/mongodb-org-3.0.list列表文件以从debian wheezy存储库获取包

echo“deb http://repo.mongodb.org/apt/debian wheezy / mongodb-org / 3.0 main”| sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list

  • 现在尝试执行 apt-get update 时出现此错误:

Atteint http://security.ubuntu.com生动安全InReleaseRéceptionde:1 http://repo.mongodb.org wheezy / mongodb-org / 3.0 InRelease 79%[1 InRelease gpgv 109 B] [Attente des fichiers d 'en-tête] [Attente des ficSplitting up /var/lib/apt/lists/partial/repo.mongodb.org_apt_debian_dists_wheezy_mIgn http://repo.mongodb.org wheezy / mongodb-org / 3.0 InRelease E:Erreur de GPG:http ://repo.mongodb.org wheezy / mongodb-org / 3.0 InRelease:Lefichiersignéenclair n'est pas valable,ce quiaétéreçuest«NODATA» . Peut-êtreleréseaunécessite-t-il une authentification .

我检查了我的源文件,它包含这个:

# deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://tn.archive.ubuntu.com/ubuntu/ vivid main restricted
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://tn.archive.ubuntu.com/ubuntu/ vivid-updates main restricted
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://tn.archive.ubuntu.com/ubuntu/ vivid universe
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid universe
deb http://tn.archive.ubuntu.com/ubuntu/ vivid-updates universe
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://tn.archive.ubuntu.com/ubuntu/ vivid multiverse
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid multiverse
deb http://tn.archive.ubuntu.com/ubuntu/ vivid-updates multiverse
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://tn.archive.ubuntu.com/ubuntu/ vivid-backports main restricted universe multiverse
deb-src http://tn.archive.ubuntu.com/ubuntu/ vivid-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu vivid-security main restricted
deb-src http://security.ubuntu.com/ubuntu vivid-security main restricted
deb http://security.ubuntu.com/ubuntu vivid-security universe
deb-src http://security.ubuntu.com/ubuntu vivid-security universe
deb http://security.ubuntu.com/ubuntu vivid-security multiverse
deb-src http://security.ubuntu.com/ubuntu vivid-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu utopic partner
# deb-src http://archive.canonical.com/ubuntu utopic partner

deb http://archive.canonical.com/ vivid partner
# deb-src http://archive.canonical.com/ utopic partner

既然我不知道问题的根源,以及如何解决它, any suggestions ??

1 回答

  • -1

    尝试,

    sudo apt-get update
    

    您现在正在以管理方式运行该命令,因此它可能有所帮助 .

相关问题