tpaw Docs

Troubleshooting

Fix common tpaw connection errors, startup issues, and query problems with this error reference table.

Most tpaw issues stem from connection configuration or network access. This page covers the most common errors and their solutions.

Connection error reference

ErrorLikely causeFix
Connection refusedPostgreSQL not running, wrong portVerify PostgreSQL is running: pg_isready -h host -p port. Check port (default 5432).
password authentication failed for user "..."Wrong username or passwordDouble-check credentials. If using peer auth, ensure username matches your OS user.
database "..." does not existDatabase name typo or database not createdLeave the Database field blank to connect to the default DB, or check the name with \l in psql.
SSL connection requiredServer requires SSL, form has SSL disabledSet SSL mode to Require in the connection form.
SSL SYSCALL error: EOF detectedSSL mismatch or network issueTry setting SSL mode to Disable if your server doesn't use SSL, or Require if it does.
could not translate host name "..." to addressDNS resolution failureUse the IP address instead of a hostname, or check your DNS/hosts file.
Connection timed outFirewall blocking port 5432, wrong hostCheck that port 5432 is open on the server's firewall. For cloud databases, check allowed IPs.
FATAL: role "..." does not existUsername doesn't exist in PostgreSQLCreate the role: CREATE ROLE username WITH LOGIN PASSWORD 'pw';
FATAL: too many connectionsMax connection limit reachedIncrease max_connections in postgresql.conf or use a connection pooler (PgBouncer).
SSH tunnel: connection refusedBastion host not reachable or SSH port wrongVerify you can SSH to the bastion manually: ssh user@bastion-host. Check SSH port (default 22).
SSH tunnel: authentication failedWrong SSH key or passwordCheck your SSH key path. Ensure the key is added to ~/.ssh/authorized_keys on the bastion.
pg_dump not foundpg_dump not installed at expected pathInstall PostgreSQL client tools: brew install postgresql on macOS.

tpaw won't launch

Symptom: tpaw bounces in the Dock but doesn't open.

Fix: Check Console.app for crash logs filtered by "tpaw". If you see a code signature error, re-download from the releases page. If the issue persists, delete the app preferences:

rm -rf ~/Library/Application\ Support/com.tpaw.app

Autocomplete shows wrong schema

Symptom: Autocomplete suggests columns from a different connection.

Fix: This can occur if you switch connections rapidly. Close and reopen the Query Editor tab to refresh the schema cache for the active connection.

Query results seem stale

Symptom: The Data Grid shows old data after an external change.

Fix: Press Cmd+R to refresh the current view. You can also right-click the table in the sidebar and choose Refresh.

Getting more help

  • Check the tpaw GitHub issues for known bugs
  • Include the PostgreSQL error code (e.g., 08006, 28P01) when reporting issues — it's shown in the error banner

On this page