mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
3ce47c5e48
* Suggest downloading packages via CDN * Update rpm.html * Update tgz.html * Update install.md * Update tutorial.md * Update install.md * Update install.md * Update tutorial.md * Update deb.html
15 lines
399 B
HTML
15 lines
399 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.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
|
|
{% endhighlight %}
|
|
|