mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
12 lines
392 B
Bash
12 lines
392 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.com/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
|