Re: Can't find postmaster

From: Jason Tishler <Jason(dot)Tishler(at)dothill(dot)com>
To: james_beetlebrow(at)ednet(dot)co(dot)uk
Cc: pgsql-cygwin(at)postgresql(dot)org
Subject: Re: Can't find postmaster
Date: 2001-05-03 19:40:22
Message-ID: 20010503154022.B440@dothill.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-cygwin

James,

On Thu, May 03, 2001 at 06:12:25PM +0100, james_beetlebrow(at)ednet(dot)co(dot)uk wrote:
> I'm trying to run postgres under cygwin. None of the binary distributions of
> tried contain the postmaster program. What am I doing wrong?

postmaster is a symlink:

$ tar -tvzf postgresql-7.1-2.tar.gz | fgrep postmaster
lrw-r--r-- jt/Domain Users 0 2001-04-16 09:00:44 usr/bin/postmaster -> postgres.exe

Are you trying to run it from cmd.exe/command.com? If so, then you must
do something like the following:

C:\> bash -c "postmaster -D /usr/share/postgresql/data"

Did you extract the binary distributions with something like WinZip?
If so, then the symlink was destroyed.

In bash, you can recreate with:

$ rm /usr/bin/postmaster
$ ln -s postgres.exe /usr/bin/postmaster

or in cmd.exe/command.com:

C:\> attrib +s C:\Cygwin\bin\postmaster

assuming that you installed Cygwin in C:\Cygwin.

Jason

--
Jason Tishler
Director, Software Engineering Phone: +1 (732) 264-8770 x235
Dot Hill Systems Corp. Fax: +1 (732) 264-8798
82 Bethany Road, Suite 7 Email: Jason(dot)Tishler(at)dothill(dot)com
Hazlet, NJ 07730 USA WWW: http://www.dothill.com

In response to

Browse pgsql-cygwin by date

  From Date Subject
Next Message Lüdde Mirko 2001-05-04 09:47:08 newbie: ODBC?
Previous Message james_beetlebrow 2001-05-03 17:12:25 Can't find postmaster