Changed address of Debian repository [#METRIQA-2014]

This commit is contained in:
Alexey Milovidov 2018-03-13 22:45:15 +03:00
parent eb03e63ab2
commit 32d4bcc1b0
3 changed files with 11 additions and 18 deletions

View File

@ -21,7 +21,7 @@ For testing and development, the system can be installed on a single server or o
In `/etc/apt/sources.list` (or in a separate `/etc/apt/sources.list.d/clickhouse.list` file), add the repository:
```text
deb http://repo.yandex.ru/clickhouse/trusty stable main
deb http://repo.yandex.ru/clickhouse/deb/stable/ main/
```
On other versions of Ubuntu, replace `trusty` with `xenial` or `precise`.
@ -35,7 +35,7 @@ sudo apt-get update
sudo apt-get install clickhouse-client clickhouse-server-common
```
You can also download and install packages manually from here:<http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/><http://repo.yandex.ru/clickhouse/xenial/pool/main/c/clickhouse/><http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/>
You can also download and install packages manually from here: <https://repo.yandex.ru/clickhouse/deb/stable/main/>
ClickHouse contains access restriction settings. They are located in the 'users.xml' file (next to 'config.xml').
By default, access is allowed from anywhere for the 'default' user, without a password. See 'user/default/networks'.
@ -132,4 +132,4 @@ SELECT 1
**Congratulations, the system works!**
To continue experimenting, you can try to download from the test data sets.
To continue experimenting, you can try to download from the test data sets.

View File

@ -21,7 +21,7 @@ grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not su
Пропишите в `/etc/apt/sources.list` (или в отдельный файл `/etc/apt/sources.list.d/clickhouse.list`) репозитории:
```text
deb http://repo.yandex.ru/clickhouse/trusty stable main
deb http://repo.yandex.ru/clickhouse/deb/stable/ main/
```
На других версиях Ubuntu, замените `trusty` на `xenial` или `precise`.
@ -35,10 +35,7 @@ sudo apt-get update
sudo apt-get install clickhouse-client clickhouse-server-common
```
Также можно скачать и установить пакеты вручную, отсюда:
<http://repo.yandex.ru/clickhouse/trusty/pool/main/c/clickhouse/>,
<http://repo.yandex.ru/clickhouse/xenial/pool/main/c/clickhouse/>,
<http://repo.yandex.ru/clickhouse/precise/pool/main/c/clickhouse/>.
Также можно скачать и установить пакеты вручную, отсюда: <https://repo.yandex.ru/clickhouse/deb/stable/main/>.
ClickHouse содержит настройки ограничения доступа. Они расположены в файле users.xml (рядом с config.xml).
По умолчанию, разрешён доступ отовсюду для пользователя default без пароля. См. секцию users/default/networks.
@ -135,4 +132,4 @@ SELECT 1
**Поздравляем, система работает!**
Для дальнейших экспериментов можно попробовать загрузить из тестовых наборов данных.
Для дальнейших экспериментов можно попробовать загрузить из тестовых наборов данных.

View File

@ -380,17 +380,13 @@
<p>System requirements: Linux, x86_64 with SSE 4.2.</p>
<p>Install packages for
<span class="distributive_not_selected" id="ubuntu_xenial">Ubuntu 16.04 Xenial</span>, <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>Install packages for Ubuntu/Debian:</p>
<code id="ubuntu-install">
<code id="packages-install">
<pre>
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 # optional
sudo apt-add-repository "deb http://repo.yandex.ru/clickhouse/<span id="distributive">trusty</span> stable main"
sudo apt-add-repository "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/"
sudo apt-get update
sudo apt-get install clickhouse-server-common clickhouse-client -y
@ -488,7 +484,7 @@ clickhouse-client
window.location.host = hostParts[0] + '.' + hostParts[1];
}
var available_distributives = ['xenial', 'trusty', 'precise'];
/* var available_distributives = ['xenial', 'trusty', 'precise'];
available_distributives.forEach(function (name) {
$('#ubuntu_' + name).on('click', function () {
$('#distributive').html(name);
@ -496,7 +492,7 @@ clickhouse-client
$('#ubuntu_' + distr).attr('class', (name == distr) ? 'distributive_selected' : 'distributive_not_selected');
});
});
});
});*/
});
</script>