2018-08-10 14:44:49 +00:00
|
|
|
# Getting Started
|
2017-12-28 15:13:23 +00:00
|
|
|
|
2018-08-10 14:44:49 +00:00
|
|
|
## System Requirements
|
2017-12-28 15:13:23 +00:00
|
|
|
|
2018-09-04 11:18:59 +00:00
|
|
|
Installation from the official repository requires Linux with x86_64 architecture and support for the SSE 4.2 instruction set.
|
|
|
|
|
2017-12-28 15:13:23 +00:00
|
|
|
To check for SSE 4.2:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"
|
|
|
|
```
|
|
|
|
|
2018-09-04 11:18:59 +00:00
|
|
|
We recommend using Ubuntu or Debian. The terminal must use UTF-8 encoding.
|
|
|
|
|
|
|
|
For rpm-based systems, you can use 3rd-party packages: https://packagecloud.io/altinity/clickhouse or install debian packages.
|
|
|
|
|
|
|
|
ClickHouse also works on FreeBSD and Mac OS X. It can be compiled for x86_64 processors without SSE 4.2 support, and for AArch64 CPUs.
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
For testing and development, the system can be installed on a single server or on a desktop computer.
|
|
|
|
|
2018-08-10 14:44:49 +00:00
|
|
|
### Installing from Packages for Debian/Ubuntu
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
In `/etc/apt/sources.list` (or in a separate `/etc/apt/sources.list.d/clickhouse.list` file), add the repository:
|
|
|
|
|
|
|
|
```text
|
2018-03-26 13:16:59 +00:00
|
|
|
deb http://repo.yandex.ru/clickhouse/deb/stable/ main/
|
2017-12-28 15:13:23 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
If you want to use the most recent test version, replace 'stable' with 'testing'.
|
|
|
|
|
|
|
|
Then run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 # optional
|
|
|
|
sudo apt-get update
|
2018-04-17 20:57:02 +00:00
|
|
|
sudo apt-get install clickhouse-client clickhouse-server
|
2017-12-28 15:13:23 +00:00
|
|
|
```
|
|
|
|
|
2018-04-23 06:20:21 +00:00
|
|
|
You can also download and install packages manually from here: <https://repo.yandex.ru/clickhouse/deb/stable/main/>.
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
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'.
|
|
|
|
For more information, see the section "Configuration files".
|
|
|
|
|
2018-08-10 14:44:49 +00:00
|
|
|
### Installing from Sources
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
To compile, follow the instructions: build.md
|
|
|
|
|
|
|
|
You can compile packages and install them.
|
|
|
|
You can also use programs without installing packages.
|
|
|
|
|
|
|
|
```text
|
2018-06-05 20:09:51 +00:00
|
|
|
Client: dbms/programs/clickhouse-client
|
|
|
|
Server: dbms/programs/clickhouse-server
|
2017-12-28 15:13:23 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
For the server, create a catalog with data, such as:
|
|
|
|
|
|
|
|
```text
|
|
|
|
/opt/clickhouse/data/default/
|
|
|
|
/opt/clickhouse/metadata/default/
|
|
|
|
```
|
|
|
|
|
|
|
|
(Configurable in the server config.)
|
|
|
|
Run 'chown' for the desired user.
|
|
|
|
|
2018-09-04 11:18:59 +00:00
|
|
|
Note the path to logs in the server config (src/dbms/programs/server/config.xml).
|
2017-12-28 15:13:23 +00:00
|
|
|
|
2018-08-10 14:44:49 +00:00
|
|
|
### Other Installation Methods
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
Docker image: <https://hub.docker.com/r/yandex/clickhouse-server/>
|
|
|
|
|
|
|
|
RPM packages for CentOS or RHEL: <https://github.com/Altinity/clickhouse-rpm-install>
|
|
|
|
|
2018-06-29 12:07:07 +00:00
|
|
|
Gentoo: `emerge clickhouse`
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
## Launch
|
|
|
|
|
|
|
|
To start the server (as a daemon), run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo service clickhouse-server start
|
|
|
|
```
|
|
|
|
|
|
|
|
See the logs in the `/var/log/clickhouse-server/ directory.`
|
|
|
|
|
|
|
|
If the server doesn't start, check the configurations in the file `/etc/clickhouse-server/config.xml.`
|
|
|
|
|
|
|
|
You can also launch the server from the console:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
clickhouse-server --config-file=/etc/clickhouse-server/config.xml
|
|
|
|
```
|
|
|
|
|
|
|
|
In this case, the log will be printed to the console, which is convenient during development.
|
|
|
|
If the configuration file is in the current directory, you don't need to specify the '--config-file' parameter. By default, it uses './config.xml'.
|
|
|
|
|
|
|
|
You can use the command-line client to connect to the server:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
clickhouse-client
|
|
|
|
```
|
|
|
|
|
|
|
|
The default parameters indicate connecting with localhost:9000 on behalf of the user 'default' without a password.
|
2018-04-23 06:20:21 +00:00
|
|
|
The client can be used for connecting to a remote server. Example:
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
clickhouse-client --host=example.com
|
|
|
|
```
|
|
|
|
|
|
|
|
For more information, see the section "Command-line client".
|
|
|
|
|
|
|
|
Checking the system:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
milovidov@hostname:~/work/metrica/src/dbms/src/Client$ ./clickhouse-client
|
|
|
|
ClickHouse client version 0.0.18749.
|
|
|
|
Connecting to localhost:9000.
|
|
|
|
Connected to ClickHouse server version 0.0.18749.
|
|
|
|
|
|
|
|
:) SELECT 1
|
|
|
|
|
|
|
|
SELECT 1
|
|
|
|
|
|
|
|
┌─1─┐
|
|
|
|
│ 1 │
|
|
|
|
└───┘
|
|
|
|
|
|
|
|
1 rows in set. Elapsed: 0.003 sec.
|
|
|
|
|
|
|
|
:)
|
|
|
|
```
|
|
|
|
|
|
|
|
**Congratulations, the system works!**
|
|
|
|
|
2018-03-13 19:45:15 +00:00
|
|
|
To continue experimenting, you can try to download from the test data sets.
|
2018-04-23 06:20:21 +00:00
|
|
|
|