0

我正在尝试在我的 ubuntu 14.04 服务器上安装 Clickhouse。

我已经用 yandex repo/ 配置了 sources.list

    deb http://repo.yandex.ru/clickhouse/trusty stable main

我跑了sudo apt-get update

我最终遇到了这个错误。

    user@server:# sudo apt-get install clickhouse-client clickhouse-server-common
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package clickhouse-client
    E: Unable to locate package clickhouse-server-common

怎么了?

4

2 回答 2

2

尝试这个

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E0C56BD4
sudo apt-get update
sudo apt-get install clickhouse-client clickhouse-server-common

如果密钥过期使用

wget -q -O - https://repo.yandex.ru/clickhouse/CLICKHOUSE-KEY.GPG | apt-key add -
于 2017-02-14T14:36:49.300 回答
0

引用https://clickhouse.tech/docs/en/getting_started/install/

推荐使用官方为 Debian 或 Ubuntu 预编译的 deb 包。

要安装官方软件包,请在 /etc/apt/sources.list 或单独的 /etc/apt/sources.list.d/clickhouse.list 文件中添加 Yandex 存储库:

  deb http://repo.clickhouse.tech/deb/stable/ main/
于 2020-03-26T15:05:17.270 回答