diff options
Diffstat (limited to 'system/postgresql/README.SBo')
-rw-r--r-- | system/postgresql/README.SBo | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/system/postgresql/README.SBo b/system/postgresql/README.SBo index 24bd944c72..dd088c0dd6 100644 --- a/system/postgresql/README.SBo +++ b/system/postgresql/README.SBo @@ -5,7 +5,7 @@ the trick. Additionally, a logrotation script and init script are included. For production level log file handling please read -http://www.postgresql.org/docs/8.3/interactive/logfile-maintenance.html +http://www.postgresql.org/docs/8.4/interactive/logfile-maintenance.html 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 @@ -25,13 +25,16 @@ the following files: /etc/rc.d/rc.postgresql stop fi -This script builds postgresql with the 'adminpack', 'tsearch2', and -'pgcrypto' features in the contrib directory. +Additionally, rc.postgresql script has additionalg modes for stop/restart: + force-stop|force-restart (i.e. pg_ctl 'fast' mode) + unclean-stop|unclean-restart (i.e. pg_ctl 'immediate' mode) +See http://www.postgresql.org/docs/8.4/static/app-pg-ctl.html + +This script builds postgresql with the 'adminpack' and 'pgcrypto' +features in the contrib directory. Please note that in order to actually use extension, you must execute accompanying SQL scripts located in /usr/share/postgresql/contrib -Since 8.3 tsearch2 functionality is available in PostgreSQL core, and -'tsearch2' extension serves only as a compatibility layer. You can -prevent building of this extension with: - TSEARCH2_COMPAT=no ./postgresql.SlackBuild +Additionally, you can enable tsearch2 compatibility module with: + TSEARCH2_COMPAT=yes ./postgresql.SlackBuild |