Re: createdb confusion

From: Mike Mascari <mascarm(at)mascari(dot)com>
To: newsreader(at)mediaone(dot)net, pgsql-general(at)postgresql(dot)org
Subject: Re: createdb confusion
Date: 2001-08-09 01:37:00
Message-ID: 3B71E93C.CC13F7E9@mascari.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Well. I just did this by hand. I did this:

As postgres:

export PGDATA2=/opt/postgres
initlocation PGDATA2

As root, I stopped the postmaster (which was installed via RPMS):

/etc/rc.d/init.d/postgresql stop

In X-Term #1 as postgres:

export PGDATA2=/opt/postgres
postmaster -D /var/lib/pgsql/data

In X-Term #2 as postgres:

createdb mydb -D PGDATA2

And it worked. Apparently, you must define the environmental
variable used in the context of the postmaster session for it to
work.

Hope that helps,

Mike Mascari
mascarm(at)mascari(dot)com

newsreader(at)mediaone(dot)net wrote:
>
> Did that already. No go.
>
> On Wed, Aug 08, 2001 at 08:48:52PM -0400, Mike Mascari wrote:
> > newsreader(at)mediaone(dot)net wrote:
> > >
> >
> > export PGDATA2=/opt/postgres/data
> > initlocation PGDATA2
> > createdb -D PGDATA2 mydb
> >
> > I haven't created databases in alternate locations, so I'm just
> > going by the manual. ;-)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Justin Clift 2001-08-09 01:51:43 Re: Re: Mirroring the database?
Previous Message Mike Mascari 2001-08-09 00:48:52 Re: createdb confusion