Postgresql

用於 Ubuntu 17.10 的 postgresql 10 巧妙?

  • March 23, 2018

PostgreSQL 10 在 Ubuntu 17.10 上是否可用?

我檢查了 APT 上的文件夾是否確實存在:http ://apt.postgresql.org/pub/repos/apt/dists/artful-pgdg/10/

但在我這樣做之後:

sudo add-apt-repository "deb http://apt.postgresql.org/pub/repos/apt/ artful-pgdg main"
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-10

我收到一個錯誤:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package postgresql-10

上述步驟適用於 Ubuntu 16.04(帶有xenial-pgdg),但不適用於 17.10。

任何指針?

我已經用*/etc/apt/sources.list.d/pgdg.list中的 zesty* -pgdg替換了 artful -pgdg,它對我有用

https://wiki.postgresql.org/wiki/Apt/FAQ

我正在使用 Ubuntu 的非 LTS 版本

僅當最新 LTS 版本中的軟體包與相關版本不兼容時,才會將 Ubuntu 的非 LTS 版本添加到儲存庫中。使用最新的 LTS 版本通常是可行的,除非無法滿足庫依賴項,在這種情況下,我們將為非 LTS 版本提供更新的包。

引用自:https://dba.stackexchange.com/questions/190845