无法在Ubuntu 16.10安装的MongoDB(can't install mongod

2019-09-27 06:01发布

我想这个下面安装的MongoDB 手册 (我使用Ubuntu 16.10)之前,我已经成功地安装了MongoDB的,但我得到了一个错误,所以我卸载的MongoDB。

当我尝试重新安装它,当我进入我得到这个错误sudo apt-get install -y mongodb-org我的终端上:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  mongodb-org-mongos mongodb-org-server mongodb-org-shell mongodb-org-tools
The following NEW packages will be installed:
  mongodb-org mongodb-org-mongos mongodb-org-server mongodb-org-shell
  mongodb-org-tools
0 upgraded, 5 newly installed, 0 to remove and 255 not upgraded.
Need to get 66,7 MB of archives.
After this operation, 269 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  mongodb-org-shell mongodb-org-server mongodb-org-mongos mongodb-org-tools
  mongodb-org
E: There were unauthenticated packages and -y was used without --allow-unauthenticated

Answer 1:

你可以用它安装装配:

sudo apt-get install -y --allow-unauthenticated mongodb-org

但要注意,它不会验证您安装的软件包。

请记住,Ubuntu的16.10是不是一个支持的平台:

  • https://docs.mongodb.com/manual/installation/#supported-platforms

请参见本教程蒙戈的Ubuntu上推荐安装:

  • https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/


Answer 2:

如果您使用的是现在同样的方法一旦安装MongoDB的(相同描述在这里 ),您的问题可能是由于:

  1. 包密钥已被更改,您需要更新; 尝试:

     sudo apt-key update sudo apt-get update 

然后再重新安装;

  1. 您现在在代理和apt-get下载任何数据包或按键时不能正常工作。

希望能帮助到你! :)



文章来源: can't install mongodb on ubuntu 16.10