From d332de806a2bc71818c71fe262a0a9efb4142e5d Mon Sep 17 00:00:00 2001 From: Aiden Gerbrandt Date: Thu, 12 Mar 2026 14:46:12 -0500 Subject: [PATCH] Added binary path info --- Postgresql.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Postgresql.md b/Postgresql.md index 5d34f67..9ee43aa 100644 --- a/Postgresql.md +++ b/Postgresql.md @@ -123,6 +123,7 @@ sudo apt install pgadmin4-desktop libnss3 libgbm-dev libasound2-dev ``` ## Setup +### Initial Setup First you will need to register your running server: ![Register Server](Screenshots/psql-register-server.png) @@ -132,3 +133,12 @@ In the General tab enter a name for your postgres server, then in the connection ![Postgres Connection](Screenshots/psql-connection.png) Now click save and pgAdmin should be ready to use as normal! + +### PSQL Tool Setup +You may need to point pgAdmin to your binary path, so that it knows where to find the `psql` tool. + +In File -> Preferences, under "Binary paths", in the "PostgeSQL Binary Path" put `/usr/bin` for the version of postgres install, and click the Validate button (Clipboard with a checkmark) to ensure it works. + +![Binary Path Selection](Screenshots/psql-binary-path.png) + +Click the Save button in the top left, and the PSQL tool should now function.