Altinity Stable Builds macOS Install Guide

How to install the Altinity Stable Builds for ClickHouse with macOS.

Installing on macOS

Altinity Stable for ClickHouse isn’t available for macOS. Instead, macOS users should use the community version through the Homebrew package manager. Users and developers who use macOS as their preferred environment can quickly install a production ready version of ClickHouse within minutes.

macOS Prerequisites

Brew Install for ClickHouse Instructions

By default, installing ClickHouse through brew will install the latest version of the community version of ClickHouse.

To install ClickHouse in macOS through Brew:

  1. To install the most recent version, use the brew install command as follows:

    brew install clickhouse
    
  2. To start the ClickHouse server use the clickhouse server command. For example:

    clickhouse server
    
  3. Connect to the new server with clickhouse client:

    > clickhouse client
    ClickHouse client version 24.2.1.2248 (official build).
    Connecting to localhost:9000 as user default.
    Connected to ClickHouse server version 24.2.1.
    
    penny.home :) select version()
    
    SELECT version()
    
    Query id: 48f863dd-7ee5-48a1-88e3-172fe318b81d
    
    ┌─version()───┐
    │ 24.2.1.2248 │
    └─────────────┘
    
    1 rows in set. Elapsed: 0.001 sec.
    
    penny.home :) exit
    Bye.