how to set up the psql command in cygwin? how to set up the psql command in cygwin? apache apache

how to set up the psql command in cygwin?


As of today, you just have to install postgresql-client package in cygwin:

  • Run your cygwin setup.exe file (this can be run multiple times toadd more packages).
  • Type postgresql into the search box, select postgresql-client andpress "next" to install.

enter image description here

Now you can open Cygwin terminal and type psql to run!

enter image description here


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:

$ wget http://ftp.postgresql.org/pub/source/v9.2.4/postgresql-9.2.4.tar.bz2$ tar xjf postgresql-9.2.4.tar.bz2$ cd postgresql-9.2.4/$ ./configure$ cd src/bin/psql$ make

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:

$ ./psql -h localhost -U postgres

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 PATH You should be able to copy the executable if necessary.

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.