PostgreSQL
Connect a PostgreSQL Database
Connect PostgreSQL to Wobby
To connect your PostgreSQL database to Wobby, follow these steps:
Create a login role and user in your database.
Grant read-only permissions.
Allow Wobby’s IP address through your firewall or security rules.
Set up the connection in the Wobby interface.
⚠️ Wobby’s agents only run read-only queries on your data. Write permissions are never used.
1. Create Role and User in PostgreSQL
In PostgreSQL, roles can act as both login accounts and permission holders. The following SQL sets up a login with read-only access for Wobby:
âś… This setup gives Wobby read access to the specified schema.
2. Optional: Auto-Grant Future Access
PostgreSQL supports default privileges, so you can configure it to automatically grant access to new tables and views:
🔄 This ensures Wobby gets access to future tables without needing manual grants.
3. Allow Wobby’s IP Address
If your PostgreSQL server is protected by firewall or network rules, allow inbound traffic from Wobby’s static IP:
This is required for Wobby’s agents to connect.
4. Set Up the Connection in Wobby
Go to Wobby → Data Sources.
Click New PostgreSQL Connection.
Fill in the following details:
Host: your PostgreSQL server address
Port: typically 5432
Database name: the one where
wobby_login
has accessUsername:
wobby_login
Password: the password you defined earlier
Test the connection and save.
Last updated
Was this helpful?