postgresql source build instructions for ubuntu 7.04

From: Jon Hancock <redstarling(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: postgresql source build instructions for ubuntu 7.04
Date: 2008-01-18 10:08:42
Message-ID: e51666df-4157-41bc-9725-70200d6f4e15@s27g2000prg.googlegroups.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

The INSTALL file for postgresql 8.3rc1 lists the following install
instructions:

./configure
gmake
su
gmake install
adduser postgres
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test

I get to the 4th step and see I need gmake. I use make instead.
Things seem ok.

Then all is well, until line 10: /usr/local/pgsql/bin/initdb -D /usr/
local/pgsql/data
The bin directory is not accessible to anyone but root due to the
permissions of the install. Should I have used a different umask for
the make/install process?

As I'm new to pg, what should I change the permissions to? Should I
make the entire bin directory executable by anyone?

Does anyone have experience with installing from source on ubuntu
7.04?

thanks, Jon

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Nico Sabbi 2008-01-18 12:14:33 Re: case dumbiness in return from functions
Previous Message Jon Hancock 2008-01-18 09:28:38 postgres.org src build vs. enterprisedb installer