Updated guide for installing ClickHouse from source in Arch Linux.

This commit is contained in:
Vladimir Chebotarev 2020-01-05 21:50:32 +03:00 committed by GitHub
parent 0dc427b132
commit a1ff6cf66c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,17 @@
### Build Arch linux package
### Build Arch Linux package
From binary directory:
```
make
cd arch
cd utils/package/arch
makepkg
```
### Install and start ClickHouse server
```
pacman -U clickhouse-*.pkg.tar.xz
systemctl enable clickhouse-server
systemctl start clickhouse-server
```