Re: installation on Sun Solaris for version 8.4

From: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
To: Sherry(dot)CTR(dot)Zhu(at)faa(dot)gov
Cc: pgsql-admin(at)postgresql(dot)org, pgsql-admin-owner(at)postgresql(dot)org
Subject: Re: installation on Sun Solaris for version 8.4
Date: 2010-05-20 18:45:47
Message-ID: AANLkTim4hhrA9GNr0UXjmWyQfomL6LoCOhZEM2SUvC7I@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Thu, May 20, 2010 at 11:56 AM, <Sherry(dot)CTR(dot)Zhu(at)faa(dot)gov> wrote:
>
> All,
>
>   I downloaded the file for Sun solaris 8.4 version, and extracted.  Can
> someone tell me where the configure script is?  Which unix account should
> run this script?  You help is very appreciated.

It looks like you're compiling from source so you can run this from
any account really.

./configure
make
sudo make install

After that you can create a service account for it (just a regular
user account is fine really) and use that to run initdb and pg_ctl

sudo adduser postgres
sudo mkdir /usr/local/pgsql/data
sudo chown postgres.postgres /usr/local/pgsql/data
sudo su - postgres
initdb -D /usr/local/pgsql/data
pg_ctl -D /usr/local/pgsql/data start

OR something like that. I'm a RedHat / Ubuntu guy so I'm not sure
what command in Solaris is used to create an account, but I'm sure you
do, so just substitute it up there where I ran adduser.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Scott Marlowe 2010-05-20 18:46:24 Re: installation on Sun Solaris for version 8.4
Previous Message Sherry.CTR.Zhu 2010-05-20 17:56:46 installation on Sun Solaris for version 8.4