我们计划明年升级 Ubuntu 操作系统,想知道默认支持哪个版本的 Postgres。
答案1
你可以找到使用包搜索在 Ubuntu 的网站上。
答案2
Ubuntu 18.04 和 18.10 中 postgresql-10 的默认版本是 10.5 版。Ubuntu 19.04 中 postgresql-11 的默认版本是 11.2 版,Ubuntu 19.10 中 postgresql-11 的默认版本是 11.5 版。postgresql-common 是 postgresql-10 的依赖项。Ubuntu 20.04 中 postgresql-12 的默认版本是 12.2 版
结果dpkg --list | grep -i postgres
ii libpq5:amd64 10.5-0ubuntu0.18.04 amd64 PostgreSQL C client library
ii postgresql-10 10.5-0ubuntu0.18.04 amd64 object-relational SQL database, version 10 server
ii postgresql-client-10 10.5-0ubuntu0.18.04 amd64 front-end programs for PostgreSQL 10
ii postgresql-client-common 190 all manager for multiple PostgreSQL client versions
ii postgresql-common 190 all PostgreSQL database-cluster manager
答案3
我在 Ubuntu 18.04 服务器上使用 Postgres 来生成地图。我的理解是,Ubuntu 服务器默认不安装 Postgres,你可以选择安装适合你需求的版本,如下所示:
sudo apt-get install postgresql-xx
在哪里二十是版本。我使用的是版本 10,因此应该是:
sudo apt-get install postgresql-10