mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
b028288350
* Switch to httpS://repo.clickhouse.tech for deb packages * deduplicate install instructions
12 lines
393 B
Bash
12 lines
393 B
Bash
sudo apt-get install apt-transport-https ca-certificates dirmngr
|
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4
|
|
|
|
echo "deb https://repo.clickhouse.tech/deb/stable/ main/" | sudo tee \
|
|
/etc/apt/sources.list.d/clickhouse.list
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y clickhouse-server clickhouse-client
|
|
|
|
sudo service clickhouse-server start
|
|
clickhouse-client
|