💡 To explore ClickHouse's scaling capabilities, check out the this multi-node playground.
clickhouse-client
: Interactive command-line client for running queriesclickhouse-local
: Tool for processing local files with ClickHouse SQL# Connect using the interactive client
clickhouse-client
# Connect with specific database
clickhouse-client --database=default
# Execute single query
clickhouse-client --query "SELECT version()"
If you need to connect from another client, use the following credentials:
localhost
9000
(native) or 8123
(HTTP)default
iximiuz
default
# Start interactive session
clickhouse-client
# Example queries in the client
SHOW DATABASES;
SELECT version();
SELECT name FROM system.tables LIMIT 5;
Happy learning! 🚀