Use psql or any PostgreSQL-compatible GUI (e.g., Galaxy) to establish a secure session with ParadeDB by supplying host, port, database, user and password.
ParadeDB is a PostgreSQL-compatible database offering advanced vector search. Connecting lets you run familiar SQL against your data, integrate with tools, and verify cluster health.
You need host (e.g., parade.example.com), port (5432 by default), database name, user and password. Optional SSL parameters improve security.
Run psql with the connection string or individual flags.Example:psql "postgresql://analytics:@parade.example.com:5432/store"
orpsql -h parade.example.com -p 5432 -U analytics -d store
In Galaxy: New Connection → PostgreSQL → enter host, port, user, password, database, and toggle “Require SSL” if needed. Save and click Connect.Galaxy stores the profile and shows schemas in the sidebar.
After connecting, run:SELECT COUNT(*) AS product_total FROM "Products";
A returned count confirms access to the ecommerce tables.
Always use SSL/TLS, restrict ParadeDB’s IP allow-list, rotate passwords, and create role-based users (read_only, writer) rather than sharing the superuser.
Incorrect port, missing quotes in connection URI, or forgetting to grant the user access to required schemas often block connections.See fixes below.
.
No. ParadeDB speaks PostgreSQL 14+, so any Postgres driver or client works.
Yes, but duplicating them inside ParadeDB keeps production and vector workloads isolated.
Export PGHOST, PGPORT, PGUSER, PGPASSWORD, and PGDATABASE, then run plain psql
.