SlackBuilds Repository

System > postgresql

PostgreSQL is an advanced object-relational database management
system (ORDBMS) based on POSTGRES. With more than 15 years of
development history, it is quickly becoming the de facto
database for enterprise level open source solutions.

Before you can run postgresql you'll need to create the
database files in /var/lib/pgsql. The following should do
the trick.
# su postgres -c "initdb -D /var/lib/pgsql/data"

Additionally, a logrotation script and init script are included.
In order to start postgresql at boot and stop it properly at shutdown,
make sure rc.postgresql is executable and add the following lines to
the following files:

/etc/rc.d/rc.local
==================
# Startup postgresql
if [ -x /etc/rc.d/rc.postgresql ]; then
/etc/rc.d/rc.postgresql start
fi

/etc/rc.d/rc.local_shutdown
===========================
# Stop postgres
if [ -x /etc/rc.d/rc.postgresql ]; then
/etc/rc.d/rc.postgresql stop
fi

This script builds postgresql with the 'adminpack' and 'tsearch2'
features in the contrib directory.

Approved by: rworkman
Maintained by: Adis Nezirovic

Homepage:
http://www.postgresql.org

Download Source:
postgresql-8.3.3.tar.bz2

Source MD5SUM:
0ae4bd9620e84d3e08dcf923808d14d0

Download SlackBuild:
postgresql.tar.gz
postgresql.tar.gz.asc

(the SlackBuild does not include the source)

Validated for Slackware 12.1 (Other releases)

See our HOWTO for instructions on how to use the contents of this repository.

Anonymous FTP Access to Repository: ftp://ftp.slackbuilds.org

Access via rsync is also available.
rsync://rsync.slackbuilds.org/slackbuilds

© 2006-2008 SlackBuilds.org Project. All rights reserved.
Slackware® is a registered trademark of Patrick Volkerding
Linux® is a registered trademark of Linus Torvalds
Valid XHTML and CSS by WebSight Designs | Hosting by OnyxLight Communications