mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Doc: added Xenial packages [#METR-20000].
This commit is contained in:
parent
c9521dd370
commit
8381c0c3ec
@ -394,7 +394,7 @@
|
||||
<p>System requirements: Linux, x86_64 with SSE 4.2.</p>
|
||||
|
||||
<p>Install packages for
|
||||
<span class="distributive_selected" id="ubuntu_trusty">Ubuntu 14.04 (Trusty)</span> or <span class="distributive_not_selected" id="ubuntu_precise">Ubuntu 12.04 (Precise)</span>:
|
||||
<span class="distributive_not_selected" id="ubuntu_xenial">Ubuntu 16.04 (Xenial)</span> or <span class="distributive_selected" id="ubuntu_trusty">Ubuntu 14.04 (Trusty)</span> or <span class="distributive_not_selected" id="ubuntu_precise">Ubuntu 12.04 (Precise)</span>:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
@ -481,16 +481,19 @@ clickhouse-client
|
||||
block_visible[class_name] ? hideBlock(class_name) : showBlock(class_name);
|
||||
}
|
||||
|
||||
var available_distributives = ['xenial', 'trusty', 'precise'];
|
||||
|
||||
function selectDistributive(name) {
|
||||
var selected = name == 'precise' ? 'precise' : 'trusty';
|
||||
var other = name == 'precise' ? 'trusty' : 'precise';
|
||||
document.getElementById('ubuntu_' + selected).className = 'distributive_selected';
|
||||
document.getElementById('ubuntu_' + other).className = 'distributive_not_selected';
|
||||
document.getElementById('distributive').innerHTML = selected;
|
||||
console.log(name);
|
||||
document.getElementById('distributive').innerHTML = name;
|
||||
available_distributives.forEach(function(distr) {
|
||||
document.getElementById('ubuntu_' + distr).className = (name == distr) ? 'distributive_selected' : 'distributive_not_selected';
|
||||
});
|
||||
}
|
||||
|
||||
document.getElementById('ubuntu_precise').addEventListener('click', function(e) { selectDistributive('precise'); });
|
||||
document.getElementById('ubuntu_trusty').addEventListener('click', function(e) { selectDistributive('trusty'); });
|
||||
available_distributives.forEach(function(distr) {
|
||||
document.getElementById('ubuntu_' + distr).addEventListener('click', function(e) { selectDistributive(distr); });
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
@ -401,7 +401,7 @@ This is not a cross-platform system. It requires Linux Ubuntu Precise (12.04) or
|
||||
To test for SSE 4.2 support, do
|
||||
%%grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"%%
|
||||
|
||||
We recommend using Ubuntu Trusty or Ubuntu Precise.
|
||||
We recommend using Ubuntu Trusty or Ubuntu Xenial or Ubuntu Precise.
|
||||
The terminal must use UTF-8 encoding (the default in Ubuntu).
|
||||
|
||||
|
||||
@ -420,11 +420,7 @@ On Ubuntu Trusty (14.04):
|
||||
deb http://repo.yandex.ru/clickhouse/trusty stable main
|
||||
%%
|
||||
|
||||
On Ubuntu Precise (12.04):
|
||||
|
||||
%%
|
||||
deb http://repo.yandex.ru/clickhouse/precise stable main
|
||||
%%
|
||||
For other Ubuntu versions, replace %%trusty%% to %%xenial%% or %%precise%%.
|
||||
|
||||
Then run:
|
||||
|
||||
@ -436,6 +432,7 @@ sudo apt-get install clickhouse-client clickhouse-server-common
|
||||
|
||||
You can also download and install packages manually from here:
|
||||
<a href="http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/</a>,
|
||||
<a href="http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/xenial/pool/main/c/clickhouse/</a>
|
||||
<a href="http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/</a>.
|
||||
|
||||
ClickHouse contains access restriction settings. They are located in the 'users.xml' file (next to 'config.xml').
|
||||
|
@ -408,7 +408,7 @@ YT позволяет хранить группы столбцов по отде
|
||||
Для проверки наличия SSE 4.2, выполните:
|
||||
%%grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"%%
|
||||
|
||||
Рекомендуется использовать Ubuntu Trusty или Ubuntu Precise.
|
||||
Рекомендуется использовать Ubuntu Trusty или Ubuntu Xenial или Ubuntu Precise.
|
||||
Терминал должен работать в кодировке UTF-8 (как по умолчанию в Ubuntu).
|
||||
|
||||
|
||||
@ -427,11 +427,7 @@ YT позволяет хранить группы столбцов по отде
|
||||
deb http://repo.yandex.ru/clickhouse/trusty stable main
|
||||
%%
|
||||
|
||||
На Ubuntu Precise (12.04):
|
||||
|
||||
%%
|
||||
deb http://repo.yandex.ru/clickhouse/precise stable main
|
||||
%%
|
||||
На других версиях Ubuntu, замените %%trusty%% на %%xenial%% или %%precise%%.
|
||||
|
||||
|
||||
Затем выполните:
|
||||
@ -444,6 +440,7 @@ sudo apt-get install clickhouse-client clickhouse-server-common
|
||||
|
||||
Также можно скачать и установить пакеты вручную, отсюда:
|
||||
<a href="http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/</a>,
|
||||
<a href="http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/xenial/pool/main/c/clickhouse/</a>,
|
||||
<a href="http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/">http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/</a>.
|
||||
|
||||
ClickHouse содержит настройки ограничения доступа. Они расположены в файле users.xml (рядом с config.xml).
|
||||
|
Loading…
Reference in New Issue
Block a user