From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Tom Allison <tom(at)tacocat(dot)net> |
Cc: | Erik Jones <erik(at)myemma(dot)com>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: pgsql and Mac OS X |
Date: | 2007-04-30 21:39:59 |
Message-ID: | 9216.1177969199@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Tom Allison <tom(at)tacocat(dot)net> writes:
> I found psql in
> /System/Library/CoreServices/RemoteManagement/rmdb.bundle/bin/psql
> which means that I can, as a user, access the database from a Mac.
> But I'm still unable to build the perl modules for DBD:Pg support.
> And this one seems a bit screwed up from default.
> Port is 5433, not 5432.
Yeah, Apple uses Postgres as a part of Remote Desktop, but I don't think
they intend it for general use --- it deliberately uses a nonstandard
port to avoid conflicting with a regular PG server. You could probably
use that psql if you explicitly set the port parameter, but that's a bit
of a pain. They very possibly didn't bother to enable command history
in psql either, if it weren't intended to be used much, and that would
be a real big pain. Lastly, if the header files aren't included
(haven't checked but seems highly likely) then you'd not be able to
use this installation to build any other PG-using code such as DBD:Pg.
What you can do if you want to build PG from source is build normally
but only install the client programs. The Fine Manual recommends
gmake -C src/bin install
gmake -C src/include install
gmake -C src/interfaces install
gmake -C doc install
instead of the usual "gmake install".
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Allison | 2007-04-30 21:58:11 | Re: pgsql and Mac OS X |
Previous Message | Michael Glaesemann | 2007-04-30 21:38:18 | Re: pgsql and Mac OS X |