Re[2]: Interface Question

From: Charles Tassell <ctassell(at)isn(dot)net>
To: "Kurt Miller"<kurt_miller(at)chnsf(dot)org>, <pgsql-general(at)postgresql(dot)org>
Subject: Re[2]: Interface Question
Date: 2000-07-05 18:17:54
Message-ID: 4.3.2.7.2.20000705151224.00d6f5b0@mailer.isn.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

This is one of the pains about the Postgres build process: You can't build
JUST the clients, you have to compile the whole server, and then you can
just use the client libraries without having the postmaster running on the
client machine. I think if you install via RPM's instead of compiling the
sources yourself there is a package with just the client libraries, but I
don't use RPM's. Either way, the only drawback to installing the full set
of programs is the space they use and the extra time it takes to build.

At 11:15 AM 7/5/00, Kurt Miller wrote:
>More specifically:
>
>Can this be done without having Postgres installed on the client?
>Can one install only the client?
>
>Thanks,
>-km
>
>
>
>______________________________ Reply Separator
>_________________________________
>Subject: Re: [GENERAL] Interface Question
>Author: Charles Tassell <ctassell(at)isn(dot)net> at ccmgate
>Date: 6/28/2000 10:44 PM
>
>
>All of the different interfaces have there own way of specifying the host
>to connect to (eg, with pgsql it's "pgsql -h hostname databasename") You
>also have to setup the pg_hba.conf file in your PGDATA directory
>(/usr/local/pgsql/data on my machine) to allow access from the remote
>machine. Usually adding this line will do the trick:
>
>host all REMOTE.IP.ADDR.ESS 255.255.255.255
>crypt
>
>You will have to specify a username/password to connect from that machine,
>however (use the -u option of pgsql, ie: pgsql -u -h remote.ip.addr.ess
>dbname.) If you don't care quite so much about security, you can use
>"trust" or "ident" instead of crypt. The pg_hba.conf man page and the file
>itself provides good documentation.
>
>At 03:18 PM 6/28/00, kurt miller wrote:
> >How would I connect a Unix client (perl,psql,etc.) on one machine to a
> >Unix postgres backend on another machine?
> >________________________________________________________________________
> >Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> >

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Thomas Krebs 2000-07-05 18:26:27 newbie problem on creating table
Previous Message Tom Lane 2000-07-05 18:12:37 Re: lztext and compression ratios...