ClickHouse
Connect a ClickHouse Database to Wobby
Connect ClickHouse to Wobby
1. Create a Read-Only User in ClickHouse
-- Replace with your chosen username and a secure password
CREATE USER wobby_user IDENTIFIED BY 'your_secure_password';2. Grant Read-Only Access to Data
-- Grant SELECT on all tables in a specific database
GRANT SELECT ON your_database.* TO wobby_user;3. Allow Wobby's IP Address
4. Set Up the Connection in Wobby
That's It!
Last updated