Postgres Setup
Step 1: Gather Connection Information
Step 2: Create a Database User (if needed)
CREATE USER zenlytic_user WITH PASSWORD 'your_secure_password';
GRANT CONNECT ON DATABASE your_database TO zenlytic_user;
GRANT USAGE ON SCHEMA public TO zenlytic_user;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO zenlytic_user;Step 3: Add the Connection in Zenlytic

Step 4: Configure Firewall/Security
Step 5: Test Your Connection
Troubleshooting
Last updated
Was this helpful?

