Connection String
Connect any PostgreSQL database to dba.ai using standard connection strings for maximum flexibility.
The connection string method allows you to connect virtually any PostgreSQL database to dba.ai, including:
- Self-hosted PostgreSQL servers
- Cloud databases without dedicated integrations
- PostgreSQL-compatible databases (like CockroachDB, YugabyteDB)
- Development and testing databases
Connection String Format
PostgreSQL connection strings follow this format:
Example:
Prerequisites
Before connecting your database, ensure:
- Your database is accessible from the internet or through a secure tunnel
- You have valid database credentials with appropriate permissions
- The PostgreSQL port (typically 5432) is open in your firewall/security group
- SSL/TLS is properly configured if required
Setup Instructions
1. Create a Database User for dba.ai
For security, create a dedicated user for dba.ai with appropriate permissions:
2. Configure Connection Parameters
Common connection parameters include:
Parameter | Description | Recommended Value |
---|---|---|
sslmode | SSL connection requirement | require (or verify-full) |
connect_timeout | Connection timeout in seconds | 10 |
application_name | Identifies the application in logs | dba_ai_monitor |
target_session_attrs | Session characteristics | read-only (if applicable) |
3. Build Your Connection String
Combine your database details and parameters into a connection string:
4. Add the Connection in dba.ai
- Log in to your dba.ai account
- Navigate to Connections > Add Connection
- Select Connection String as the connection type
- Paste your connection string into the field
- Give your connection a descriptive name
- Click Test Connection to verify
- Click Create Connection to save
Troubleshooting
Connection Errors
If you experience connection issues:
- Connection refused: Check that your database is accessible and the port is open
- Authentication failed: Verify username and password are correct
- SSL required: Ensure SSL parameters match your database configuration
- Timeout: Check network connectivity and firewall rules
Viewing Connection Details
To check your current PostgreSQL server connections:
Common SSL/TLS Issues
If you’re having SSL/TLS issues:
- Certificate validation: Use
sslmode=verify-ca
orverify-full
with proper CA certificates - SSL not available: Ensure PostgreSQL was compiled with SSL support
- Certificate mismatch: Verify the hostname matches the certificate
Advanced Configuration
Connection Pooling
For high-traffic databases, consider using connection pooling:
Read-Only Connections
To ensure dba.ai never modifies data, use the read-only parameter:
Multiple Schemas
If your database uses multiple schemas, grant permissions appropriately:
Security Best Practices
- Rotate the dba.ai user password regularly
- Use SSL/TLS with certificate validation
- Grant only the minimum required permissions
- Consider IP-based restrictions for additional security
- Monitor all connections from dba.ai in your database logs
Next Steps
After connecting your database:
- Set up issue detection to monitor for problems
- Configure alert settings to get notified about critical issues
- Explore your dashboard to see your database performance
Was this page helpful?