Troubleshooting
Solutions for common issues and problems
Having trouble? Here are solutions to common issues you might encounter.
Connection Issues
"Connection refused" Error
This usually means the database server isn't running or isn't accepting connections on the specified port.
Solutions:
- Verify your database server is running
- Check the port number is correct
- Ensure your firewall allows connections on that port
BASH
"Authentication failed" Error
Your username or password is incorrect, or the user doesn't have permission to access the database.
Solutions:
- Double-check your credentials
- Verify the user has access to the specified database
- Check if the authentication method requires SSL
SSL Connection Required
Some databases require SSL connections. Enable SSL in your connection settings:
postgresql://user:pass@host:5432/db?sslmode=require
Performance Issues
Queries Running Slowly
If queries are taking too long:
- Check your query - Are you selecting more data than needed?
- Add LIMIT - Use
LIMITto restrict results during development - Check indexes - Ensure your tables have appropriate indexes
SQL
Application Feels Sluggish
Try these steps:
- Restart DB Pro
- Clear the query cache (Settings > Clear Cache)
- Check if you have too many open connections
Reset DB Pro
If you need to start fresh:
macOS
BASH
Windows
POWERSHELL
Getting More Help
If you're still stuck:
- Join our Discord community for support
- Sign in to your Dashboard to contact support