是否可以通过apt-get安装couchdb 2.x?

时间:2018-02-02 12:19:10

标签: ubuntu couchdb ubuntu-16.04

这可能是一个noob问题,但可以通过apt-get安装couchdb 2.x吗? 当我apt-get install couchdb -y时,我总是得到版本1.6.x

apt-cache policy couchdb给了我:

couchdb:
  Installed: (none)
  Candidate: 1.6.0-0ubuntu7
  Version table:
     1.6.0-0ubuntu7 500
        500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages

谢谢

2 个答案:

答案 0 :(得分:1)

是的,你可以,但你需要使用项目自己的软件包存储库(据我所知,CouchDB的版本不会在主repo中更新)。您可以在http://docs.couchdb.org/en/master/install/unix.html找到有关如何添加存储库并安装软件包的说明(警告,首先删除现有的couchdb安装。数据应该可以正常运行,无需任何迁移步骤,但请确保您有备份)

答案 1 :(得分:1)

好的,我找到了解决方案。这基本上得到了回答:

Installing CouchDB 2.1 on Ubuntu Server 16.04

有多种方式。 对我有用的那个是来自MadPink的那个:

  • 使用您喜欢的编辑器将“deb https://apache.bintray.com/couchdb-deb xenial main”添加到/etc/apt/sources.list
  • curl -L https://couchdb.apache.org/repo/bintray-pubkey.asc | sudo apt-key add -
  • sudo apt-get install apt-transport-https
  • sudo apt-get update && sudo apt-get install couchdb