Binary Package Installation
- Create a ClickHouse installation directory, for example, /home/clickhouse. Go to the directory.
1 2
mkdir -p /home/clickhouse cd /home/clickhouse
- Download the RPM packages.
1 2 3
wget https://github.com/ClickHouse/ClickHouse/releases/download/v24.1.8.22-stable/clickhouse-server-24.1.8.22.aarch64.rpm --no-check-certificate wget https://github.com/ClickHouse/ClickHouse/releases/download/v24.1.8.22-stable/clickhouse-common-static-24.1.8.22.aarch64.rpm --no-check-certificate wget https://github.com/ClickHouse/ClickHouse/releases/download/v24.1.8.22-stable/clickhouse-client-24.1.8.22.aarch64.rpm --no-check-certificate
- Install the RPM packages.
1 2 3
rpm -ivh clickhouse-common-static-24.1.8.22.aarch64.rpm rpm -ivh clickhouse-client-24.1.8.22.aarch64.rpm rpm -ivh clickhouse-server-24.1.8.22.aarch64.rpm
During the installation of clickhouse-server-24.1.8.22.aarch64.rpm, when prompted with "Enter password for the default user", press Enter to continue without setting a password.

- Check whether the RPM packages are successfully installed.
1rpm -qa | grep clickhouse

- Start the ClickHouse server.
1clickhouse start - Check whether the ClickHouse server has started successfully.If clickhouse is displayed in the output, the ClickHouse server has started successfully.
1ps -ef | grep clickhouse

- Log in to ClickHouse.
1clickhouse client
Parent topic: Installing ClickHouse