Installing PostgreSQL
PostgreSQL is available via the COMP9315 web site.
Provided as tarball and zip in ~cs9315/web/16s1/postgresql/
Brief summary of installation:
$ tar xfj ..../postgresql/src.tar.bz2
$ configure --prefix=~/your/pgsql/directory
$ make
$ make install
$ source ~/your/environment/file
$ initdb
$ pg_ctl start
$ pg_ctl stop
|
|