I have a local dev site on my machine with Apache server and PostgreSQL 9.1 database. As I'm using Windows, I also installed Cygwin. I want to access to database and make some queries via Cygwin insead of pgAdmin III, but it tells me that psql command not found. How should I set up the psql command in cygwin?
|
|
The best combo for Cygwin on Windows, I've found, is the normal Windows Postgres installation combined with Cygwin psql. Cygwin psql (and other command-line tools) can be compiled from source fairly easily. Here's the steps for 9.2.4:
This creates a psql.exe binary that works well with Cygwin. However, by default, it tries to connect to the local instance using a Unix socket instead of TCP. So use -h to specify the hostname and force TCP, for example:
Move this psql.exe to someplace on your path (e.g. ~/bin) and possibly wrap in a script to add '-h localhost' for convenience when no other arguments supplied. The source could be modified to change the default, but that takes actual work ;) |
|||
|
|
|
If I understand your question correctly you are running cygwin because you want to run queries against PostgreSQL via bash and psql on Windows, right? Cygwin can run Windows binaries from bash, so install the native Windows builds and make sure psql.exe is in the There is no need to install a native Cygwin build of PostgreSQL. Just use the existing psql tool, and make sure you can access the Windows-native psql.exe. |
|||
|