mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
15 lines
404 B
HTML
15 lines
404 B
HTML
|
{% highlight "bash" %}
|
||
|
sudo apt-get install dirmngr
|
||
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4
|
||
|
|
||
|
echo "deb http://repo.yandex.ru/clickhouse/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
|
||
|
{% endhighlight %}
|
||
|
|