提交 88880be2 编写于 作者: A Alexey Milovidov

Merge branch 'master' into joins_rectification

...@@ -394,7 +394,7 @@ ...@@ -394,7 +394,7 @@
<p>System requirements: Linux, x86_64 with SSE 4.2.</p> <p>System requirements: Linux, x86_64 with SSE 4.2.</p>
<p>Install packages for <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> </p>
<code> <code>
...@@ -481,16 +481,19 @@ clickhouse-client ...@@ -481,16 +481,19 @@ clickhouse-client
block_visible[class_name] ? hideBlock(class_name) : showBlock(class_name); block_visible[class_name] ? hideBlock(class_name) : showBlock(class_name);
} }
var available_distributives = ['xenial', 'trusty', 'precise'];
function selectDistributive(name) { function selectDistributive(name) {
var selected = name == 'precise' ? 'precise' : 'trusty'; console.log(name);
var other = name == 'precise' ? 'trusty' : 'precise'; document.getElementById('distributive').innerHTML = name;
document.getElementById('ubuntu_' + selected).className = 'distributive_selected'; available_distributives.forEach(function(distr) {
document.getElementById('ubuntu_' + other).className = 'distributive_not_selected'; document.getElementById('ubuntu_' + distr).className = (name == distr) ? 'distributive_selected' : 'distributive_not_selected';
document.getElementById('distributive').innerHTML = selected; });
} }
document.getElementById('ubuntu_precise').addEventListener('click', function(e) { selectDistributive('precise'); }); available_distributives.forEach(function(distr) {
document.getElementById('ubuntu_trusty').addEventListener('click', function(e) { selectDistributive('trusty'); }); document.getElementById('ubuntu_' + distr).addEventListener('click', function(e) { selectDistributive(distr); });
});
</script> </script>
......
...@@ -401,7 +401,7 @@ This is not a cross-platform system. It requires Linux Ubuntu Precise (12.04) or ...@@ -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 To test for SSE 4.2 support, do
%%grep -q sse4_2 /proc/cpuinfo &amp;&amp; echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"%% %%grep -q sse4_2 /proc/cpuinfo &amp;&amp; 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). The terminal must use UTF-8 encoding (the default in Ubuntu).
...@@ -420,11 +420,7 @@ On Ubuntu Trusty (14.04): ...@@ -420,11 +420,7 @@ On Ubuntu Trusty (14.04):
deb http://repo.yandex.ru/clickhouse/trusty stable main deb http://repo.yandex.ru/clickhouse/trusty stable main
%% %%
On Ubuntu Precise (12.04): For other Ubuntu versions, replace %%trusty%% to %%xenial%% or %%precise%%.
%%
deb http://repo.yandex.ru/clickhouse/precise stable main
%%
Then run: Then run:
...@@ -436,6 +432,7 @@ sudo apt-get install clickhouse-client clickhouse-server-common ...@@ -436,6 +432,7 @@ sudo apt-get install clickhouse-client clickhouse-server-common
You can also download and install packages manually from here: 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/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>. <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 &#39;users.xml&#39; file (next to &#39;config.xml&#39;). ClickHouse contains access restriction settings. They are located in the &#39;users.xml&#39; file (next to &#39;config.xml&#39;).
......
...@@ -408,7 +408,7 @@ YT позволяет хранить группы столбцов по отде ...@@ -408,7 +408,7 @@ YT позволяет хранить группы столбцов по отде
Для проверки наличия SSE 4.2, выполните: Для проверки наличия SSE 4.2, выполните:
%%grep -q sse4_2 /proc/cpuinfo &amp;&amp; echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"%% %%grep -q sse4_2 /proc/cpuinfo &amp;&amp; echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"%%
Рекомендуется использовать Ubuntu Trusty или Ubuntu Precise. Рекомендуется использовать Ubuntu Trusty или Ubuntu Xenial или Ubuntu Precise.
Терминал должен работать в кодировке UTF-8 (как по умолчанию в Ubuntu). Терминал должен работать в кодировке UTF-8 (как по умолчанию в Ubuntu).
...@@ -427,11 +427,7 @@ YT позволяет хранить группы столбцов по отде ...@@ -427,11 +427,7 @@ YT позволяет хранить группы столбцов по отде
deb http://repo.yandex.ru/clickhouse/trusty stable main deb http://repo.yandex.ru/clickhouse/trusty stable main
%% %%
На Ubuntu Precise (12.04): На других версиях Ubuntu, замените %%trusty%% на %%xenial%% или %%precise%%.
%%
deb http://repo.yandex.ru/clickhouse/precise stable main
%%
Затем выполните: Затем выполните:
...@@ -444,6 +440,7 @@ sudo apt-get install clickhouse-client clickhouse-server-common ...@@ -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/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>. <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). ClickHouse содержит настройки ограничения доступа. Они расположены в файле users.xml (рядом с config.xml).
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册