2004-09-09 10:37:06 +00:00
|
|
|
README.rpm-dist
|
|
|
|
-----------------------------------------------------------------------------
|
2012-09-10 15:15:54 +00:00
|
|
|
Version 9.2, for the PostgreSQL 9.2 RPM set.
|
2011-02-15 21:33:39 +00:00
|
|
|
Devrim Gündüz <devrim@gunduz.org>
|
2004-09-09 10:41:12 +00:00
|
|
|
-----------------------------------------------------------------------------
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
Contents:
|
2009-08-18 02:58:55 +00:00
|
|
|
1.) Introduction and QuickStart
|
2010-12-29 00:13:08 +00:00
|
|
|
2.) Upgrading an installation
|
|
|
|
3.) PostgreSQL RPM packages and rationale
|
|
|
|
4.) Starting multiple postmasters
|
|
|
|
5.) Regression Testing
|
|
|
|
6.) Starting postmaster automatically on startup
|
|
|
|
7.) Grand Unified Configuration(GUC) File
|
|
|
|
8.) Logging set up
|
|
|
|
9.) Rebuilding from the source RPM
|
|
|
|
10.) Contrib files
|
|
|
|
11.) Further Information Resource
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
INTRODUCTION
|
|
|
|
-----------------------------------------------------------------------------
|
2005-01-19 05:02:11 +00:00
|
|
|
This document exists to explain the layout of the RPMs for PostgreSQL, to
|
2004-09-09 10:41:55 +00:00
|
|
|
describe various RPM specifics, and to document special features found
|
|
|
|
in the RPMset.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2012-09-10 15:15:54 +00:00
|
|
|
This document is written to be applicable to version 9.2 of PostgreSQL,
|
2005-01-19 05:02:11 +00:00
|
|
|
which is the current version of the RPMs as of this writing. More to the
|
2012-09-10 15:15:54 +00:00
|
|
|
point, versions prior to 9.2 are not documented here.
|
2009-08-18 02:58:55 +00:00
|
|
|
|
2010-12-29 00:13:08 +00:00
|
|
|
This document is intended for use only with the RPMs supplied in Red Hat
|
|
|
|
Enterprise Linux, CentOS and Fedora. Note that there are also "PGDG"
|
|
|
|
RPMs available directly from the upstream PostgreSQL project. Those are
|
|
|
|
slightly different.
|
2004-09-09 10:41:55 +00:00
|
|
|
|
2013-06-20 07:44:06 +00:00
|
|
|
QUICKSTART (note that this requires postgresql-server installed)
|
2004-09-09 10:37:06 +00:00
|
|
|
-----------------------------------------------------------------------------
|
2009-08-18 02:58:55 +00:00
|
|
|
For a fresh installation, you will need to initialize the cluster first. Run:
|
|
|
|
|
2011-07-27 23:32:24 +00:00
|
|
|
postgresql-setup initdb
|
2009-08-18 02:58:55 +00:00
|
|
|
|
|
|
|
as root, and it will prepare a new database cluster for you. Then you will
|
|
|
|
need to start PostgreSQL. Again as root, run:
|
|
|
|
|
2011-07-27 23:32:24 +00:00
|
|
|
systemctl start postgresql.service
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2009-08-18 02:58:55 +00:00
|
|
|
This command will start a postmaster that willl listen on localhost and Unix
|
|
|
|
socket 5432 only. Edit /var/lib/pgsql/data/postgresql.conf and pg_hba.conf
|
|
|
|
if you want to allow remote access -- see the section on Grand Unified
|
|
|
|
Configuration.
|
|
|
|
|
2011-07-27 23:32:24 +00:00
|
|
|
You will probably also want to do
|
|
|
|
|
|
|
|
systemctl enable postgresql.service
|
|
|
|
|
|
|
|
so that the postmaster is automatically started during future reboots.
|
|
|
|
|
2009-08-18 02:58:55 +00:00
|
|
|
The file /var/lib/pgsql/.bash_profile is packaged to help with the
|
2004-09-09 10:37:06 +00:00
|
|
|
setting of environment variables. You may edit this file, and it won't be
|
2009-08-18 02:58:55 +00:00
|
|
|
overwritten during an upgrade. However, enhancements and bugfixes may
|
|
|
|
be added to this file, so be sure to check .bash_profile.rpmnew after
|
|
|
|
upgrading.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
The user 'postgres' is created during installation of the server subpackage.
|
|
|
|
This user by default is UID and GID 26. The user has the default shell set to
|
|
|
|
bash, and the home directory set to /var/lib/pgsql. This user also has no
|
2012-09-10 15:15:54 +00:00
|
|
|
default password, so the only way to become this user is to su to it from root.
|
|
|
|
If you want to be able to su to it from a non-root account or log in directly
|
|
|
|
as 'postgres' you will need to set a password using passwd.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2010-12-29 00:13:08 +00:00
|
|
|
UPGRADING AN INSTALLATION
|
|
|
|
-----------------------------------------------------------------------------
|
2012-09-10 15:15:54 +00:00
|
|
|
For a minor-version upgrade (such as 9.2.1 to 9.2.2), just install the
|
2010-12-29 00:13:08 +00:00
|
|
|
new RPMs; there's usually nothing more to it than that. Upgrading
|
2012-09-10 15:15:54 +00:00
|
|
|
across a major release of PostgreSQL (for example, from 9.1.x to 9.2.x)
|
2010-12-29 00:13:08 +00:00
|
|
|
requires more effort.
|
|
|
|
|
|
|
|
If you are upgrading across more than one major release of PostgreSQL
|
|
|
|
(for example, from 8.3.x to 9.0.x), you will need to follow the "traditional"
|
|
|
|
dump and reload process to bring your data into the new version. That is:
|
|
|
|
*before* upgrading, run pg_dumpall to extract all your data into a SQL file.
|
|
|
|
Shut down the old postmaster, upgrade to the new version RPMs, initdb,
|
|
|
|
and run the dump file through psql to restore your data.
|
|
|
|
|
|
|
|
In some major releases, the RPMs also support in-place upgrade from the
|
|
|
|
immediately previous major release. Currently, you can upgrade in-place
|
2012-09-10 15:15:54 +00:00
|
|
|
from 9.1.x to 9.2.x. This is much faster than a dump and reload.
|
2010-12-29 00:13:08 +00:00
|
|
|
To do an in-place upgrade:
|
2011-07-27 23:32:24 +00:00
|
|
|
* shut down the old postmaster ("systemctl stop postgresql.service")
|
2011-09-12 06:05:56 +00:00
|
|
|
* optionally make a backup of /var/lib/pgsql/data/ (recommended!)
|
2010-12-29 00:13:08 +00:00
|
|
|
* install the new version's RPMs (install all the ones you had before,
|
|
|
|
plus postgresql-upgrade)
|
2011-07-27 23:32:24 +00:00
|
|
|
* as root, run "postgresql-setup upgrade"
|
2010-12-29 00:13:08 +00:00
|
|
|
* update the configuration files /var/lib/pgsql/data/*.conf with any
|
|
|
|
customizations you had before (your old configuration files are in
|
|
|
|
/var/lib/pgsql/data-old/)
|
2011-07-27 23:32:24 +00:00
|
|
|
* as root, run "systemctl start postgresql.service"
|
2011-09-12 06:05:56 +00:00
|
|
|
* the postgresql-upgrade RPM can be removed after the update is complete,
|
|
|
|
as can /var/lib/pgsql/data-old/
|
2010-12-29 00:13:08 +00:00
|
|
|
|
|
|
|
NOTE: The in-place upgrade process is new and relatively poorly tested,
|
|
|
|
so if your data is critical it's a really good idea to make a tarball
|
|
|
|
backup of /var/lib/pgsql/data/ before running the upgrade. This will
|
|
|
|
let you get back to where you were in case of disaster.
|
|
|
|
|
2004-09-09 10:37:06 +00:00
|
|
|
POSTGRESQL RPM PACKAGES AND RATIONALE.
|
|
|
|
-----------------------------------------------------------------------------
|
2005-01-19 05:02:11 +00:00
|
|
|
PostgreSQL is split up into multiple packages so that users can 'pick and
|
|
|
|
choose' what pieces are needed, and what dependencies are required.
|
|
|
|
|
2004-09-09 10:41:55 +00:00
|
|
|
The RPMset is packaged in the following subpackages:
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2010-12-29 00:13:08 +00:00
|
|
|
postgresql: Key client programs and documentation
|
2005-01-19 05:02:11 +00:00
|
|
|
postgresql-libs: Client shared libraries
|
2004-09-09 10:37:06 +00:00
|
|
|
postgresql-server: Server executables and data files
|
2005-01-19 05:02:11 +00:00
|
|
|
postgresql-devel: Development libraries and include files
|
|
|
|
postgresql-test: The regression tests and associated files
|
2010-12-29 00:13:08 +00:00
|
|
|
postgresql-upgrade: Support files for upgrading from previous major version
|
2005-01-19 05:02:11 +00:00
|
|
|
postgresql-docs: Extra documentation, such as the tutorial files
|
2012-09-10 15:15:54 +00:00
|
|
|
postgresql-contrib: Add-on loadable modules and programs
|
2007-01-13 04:30:50 +00:00
|
|
|
postgresql-plperl: PL/Perl procedural language
|
2012-09-10 15:15:54 +00:00
|
|
|
postgresql-plpython: PL/Python procedural language (for Python 2)
|
|
|
|
postgresql-plpython3: PL/Python procedural language (for Python 3)
|
2007-01-13 04:30:50 +00:00
|
|
|
postgresql-pltcl: PL/Tcl procedural language
|
2004-09-09 10:41:55 +00:00
|
|
|
|
2005-01-19 05:02:11 +00:00
|
|
|
You have to install postgresql and postgresql-libs to do anything.
|
|
|
|
postgresql-server is needed unless you only plan to use the clients to work
|
|
|
|
with a remote PostgreSQL server. The others are optional.
|
|
|
|
|
2010-12-29 00:13:08 +00:00
|
|
|
Note that there are no postgresql-perl, postgresql-jdbc, postgresql-odbc,
|
|
|
|
postgresql-python, postgresql-tcl, or postgresql-tk subpackages any longer.
|
|
|
|
Those programs have been split off into separate source distributions.
|
|
|
|
They are still available, but in some cases not under those RPM names.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
RPM FILE LOCATIONS.
|
|
|
|
-----------------------------------------------------------------------------
|
2005-01-19 05:02:11 +00:00
|
|
|
To be in compliance with the Linux FHS, the PostgreSQL RPMs install files in
|
|
|
|
a manner not consistent with most of the PostgreSQL documentation. According
|
|
|
|
to the standard PostgreSQL documentation, PostgreSQL is installed under the
|
|
|
|
directory /usr/local/pgsql, with executables, source, and data existing in
|
|
|
|
various subdirectories.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
Different distributions have different ideas of some of these file locations.
|
|
|
|
In particular, the documentation directory can be /usr/doc, /usr/doc/packages,
|
2009-08-18 02:58:55 +00:00
|
|
|
/usr/share/doc, /usr/share/doc/packages, or some other similar path.
|
|
|
|
|
|
|
|
However, the Red Hat / CentOS / Fedora RPM's install the files like
|
|
|
|
this:
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
Executables: /usr/bin
|
2012-09-10 15:15:54 +00:00
|
|
|
Libraries: /usr/lib (or /usr/lib64 on 64-bit machines)
|
2009-08-18 02:58:55 +00:00
|
|
|
Documentation: /usr/share/doc/postgresql-docs-x.y.z/html
|
2005-01-19 05:02:11 +00:00
|
|
|
Contrib documentation: /usr/share/doc/postgresql-contrib-x.y.z
|
2004-09-09 10:37:06 +00:00
|
|
|
Source: not installed
|
|
|
|
Data: /var/lib/pgsql/data
|
2009-08-18 02:58:55 +00:00
|
|
|
Backup area: /var/lib/pgsql/backups
|
2004-09-09 10:37:06 +00:00
|
|
|
Templates: /usr/share/pgsql
|
2009-08-18 02:58:55 +00:00
|
|
|
Procedural Languages: /usr/lib/pgsql or /usr/lib64/pgsql
|
2004-09-09 10:37:06 +00:00
|
|
|
Development Headers: /usr/include/pgsql
|
|
|
|
Other shared data: /usr/share/pgsql
|
|
|
|
Regression tests: /usr/lib/pgsql/test/regress (in the -test package)
|
2009-08-18 02:58:55 +00:00
|
|
|
or /usr/lib64/pgsql/test/regress
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
While it may seem gratuitous to place these files in different locations, the
|
|
|
|
FHS requires it -- distributions should not ever touch /usr/local. It may
|
|
|
|
also seem like more work to keep track of where everything is -- but, that's
|
|
|
|
the beauty of RPM -- you don't have to keep track of the files, RPM does it
|
|
|
|
for you.
|
|
|
|
|
2005-01-19 05:02:11 +00:00
|
|
|
These RPMs are designed to be LSB-compliant -- if you find this not to be the
|
2007-01-13 04:30:50 +00:00
|
|
|
case, please let us know by way of the pgsqlrpms-hackers@pgfoundry.org
|
2005-11-07 21:54:56 +00:00
|
|
|
mailing list.
|
2004-09-09 10:39:06 +00:00
|
|
|
|
2004-09-09 10:41:55 +00:00
|
|
|
MULTIPLE POSTMASTERS
|
2004-09-09 10:37:06 +00:00
|
|
|
-------------------------------------------------------------------------------
|
2011-07-27 23:32:24 +00:00
|
|
|
The postgresql-server RPM contains a systemd "unit" file, postgresql.service,
|
|
|
|
that is used to start the PostgreSQL postmaster. If you need to run multiple
|
2012-08-17 15:48:18 +00:00
|
|
|
postmasters on one machine, you can create additional unit files derived
|
|
|
|
from this one.
|
2004-09-09 10:41:55 +00:00
|
|
|
|
|
|
|
As an example, let us create a secondary postmaster called, creatively enough,
|
|
|
|
'secondary'. Here are the steps:
|
2012-08-17 15:48:18 +00:00
|
|
|
1.) Create a file named /etc/systemd/system/secondary.service.
|
2011-07-27 23:32:24 +00:00
|
|
|
(Note that user-created unit files must go into /etc not /lib!)
|
2012-08-17 15:48:18 +00:00
|
|
|
Put these lines in it:
|
|
|
|
.include /lib/systemd/system/postgresql.service
|
|
|
|
[Service]
|
|
|
|
Environment=PGPORT=nnnn
|
|
|
|
Environment=PGDATA=/path/to/data/directory
|
|
|
|
Replace "nnnn" and "/path/to/data/directory" with appropriate
|
|
|
|
settings that don't conflict with any other postmaster.
|
|
|
|
2.) As root, do "/bin/systemctl daemon-reload" to ensure systemd has
|
|
|
|
noticed your updates to the service file.
|
|
|
|
3.) Create the target PGDATA directory, making sure that its parent
|
|
|
|
directories have appropriate ownership and permissions.
|
2011-07-27 23:32:24 +00:00
|
|
|
4.) Initdb the target PGDATA with 'postgresql-setup initdb secondary'.
|
|
|
|
5.) Edit postgresql.conf in the target PGDATA to change settings as needed.
|
|
|
|
6.) Start the new postmaster with 'systemctl start secondary.service'.
|
|
|
|
You will probably also want to do 'systemctl enable secondary.service'
|
|
|
|
so that the new postmaster is automatically started in future reboots.
|
|
|
|
|
2012-09-10 15:15:54 +00:00
|
|
|
When doing a major-version upgrade of a secondary postmaster, add the
|
|
|
|
service name to the postgresql-setup command, for example 'postgresql-setup
|
2011-07-27 23:32:24 +00:00
|
|
|
upgrade secondary'. This will let postgresql-setup find the correct data
|
|
|
|
directory from the service file.
|
2004-09-09 10:41:55 +00:00
|
|
|
|
2012-08-17 15:48:18 +00:00
|
|
|
If you are running SELinux in enforcing mode (which is highly recommended,
|
|
|
|
particularly for network-exposed services like PostgreSQL) you will need to
|
|
|
|
adjust SELinux policy to allow the postmaster to use non-default PGPORT or
|
|
|
|
PGDATA settings. To allow use of a non-default port, say 5433, do this
|
|
|
|
as root:
|
|
|
|
semanage port -a -t postgresql_port_t -p tcp 5433
|
|
|
|
To allow use of a non-default data directory, say /special/pgdata, do:
|
|
|
|
semanage fcontext -a -t postgresql_db_t "/special/pgdata(/.*)?"
|
|
|
|
If you already created the directory, follow that with:
|
|
|
|
restorecon -R /special/pgdata
|
|
|
|
These settings are persistent across reboots. For more information
|
|
|
|
see "man semanage".
|
|
|
|
|
2004-09-09 10:37:06 +00:00
|
|
|
REGRESSION TESTING
|
|
|
|
-------------------------------------------------------------------------------
|
2005-01-19 05:02:11 +00:00
|
|
|
If you install the postgresql-test RPM then you can run the PostgreSQL
|
2004-09-09 10:37:06 +00:00
|
|
|
regression tests. These tests stress your database installation and produce
|
|
|
|
results that give you assurances that the installation is complete, and that
|
|
|
|
your database machine is up to the task.
|
|
|
|
|
2011-07-27 23:32:24 +00:00
|
|
|
To run the regression tests under the RPM installation, make sure that the
|
|
|
|
postmaster has been started (if not, su to root and do "systemctl start
|
2012-09-10 15:15:54 +00:00
|
|
|
postgresql.service"), su to postgres, cd to /usr/lib/pgsql/test/regress
|
|
|
|
(or /usr/lib64/pgsql/test/regress on a 64-bit machine),
|
2011-07-27 23:32:24 +00:00
|
|
|
and execute "make check".
|
2005-01-19 05:02:11 +00:00
|
|
|
This command will start the regression tests and will both show the
|
2004-09-09 10:37:06 +00:00
|
|
|
results to the screen and store the results in the file regress.out.
|
|
|
|
|
2005-01-19 05:02:11 +00:00
|
|
|
If any tests fail, see the file regression.diffs in that directory for details,
|
|
|
|
and read the "Regression Tests" section of the PostgreSQL documentation to
|
|
|
|
find out whether the differences are actually significant. If you need help
|
2009-08-18 02:58:55 +00:00
|
|
|
interpreting the results, contact the pgsql-general list at
|
|
|
|
postgresql.org.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2012-09-10 15:15:54 +00:00
|
|
|
After testing, run "make clean" to remove the files generated by the test
|
|
|
|
script. Then you can remove the postgresql-test RPM, if you wish.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
STARTING POSTMASTER AUTOMATICALLY AT SYSTEM STARTUP
|
|
|
|
-------------------------------------------------------------------------------
|
2011-07-27 23:32:24 +00:00
|
|
|
Fedora / Red Hat / CentOS use the systemd package to manage server startup.
|
|
|
|
A systemd unit file for PostgreSQL is provided in the server package, as
|
|
|
|
/lib/systemd/system/postgresql.service. To start the postmaster manually,
|
2010-12-29 00:13:08 +00:00
|
|
|
as root run
|
2011-07-27 23:32:24 +00:00
|
|
|
systemctl start postgresql.service
|
2005-01-19 05:02:11 +00:00
|
|
|
To shut the postmaster down,
|
2011-07-27 23:32:24 +00:00
|
|
|
systemctl stop postgresql.service
|
|
|
|
These two commands only change the postmaster's current status. If you
|
|
|
|
want the postmaster to be started automatically during future system startups,
|
|
|
|
run
|
|
|
|
systemctl enable postgresql.service
|
|
|
|
To undo that again,
|
|
|
|
systemctl disable postgresql.service
|
|
|
|
See "man systemctl" for other possible subcommands.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
GRAND UNIFIED CONFIGURATION (GUC) FILE
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
The PostgreSQL server has many tunable parameters -- the file
|
|
|
|
/var/lib/pgsql/data/postgresql.conf is the master configuration file for the
|
|
|
|
whole system.
|
|
|
|
|
2011-07-27 23:32:24 +00:00
|
|
|
The RPM ships with a mostly-default file -- you will need to tune the
|
2004-09-09 10:37:06 +00:00
|
|
|
parameters for your installation. In particular, you might want to allow
|
2005-01-19 05:02:11 +00:00
|
|
|
nonlocal TCP/IP socket connections -- in order to allow these, you will need
|
|
|
|
to edit the postgresql.conf file. The line in question contains the string
|
|
|
|
'listen_addresses' -- you need to both uncomment the line and set the value
|
|
|
|
to '*' to get the postmaster to accept nonlocal connections. You'll also need
|
|
|
|
to adjust pg_hba.conf appropriately.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2005-01-19 05:02:11 +00:00
|
|
|
LOGGING SET UP
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
By default, the postmaster's stderr log is directed into files placed in a
|
|
|
|
pg_log subdirectory of the data directory (ie, /var/lib/pgsql/data/pg_log).
|
|
|
|
The out-of-the-box configuration rotates among seven files, one for each
|
|
|
|
day of the week. You can adjust this by changing postgresql.conf settings.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
REBUILDING FROM SOURCE RPM
|
|
|
|
-------------------------------------------------------------------------------
|
2005-01-19 05:02:11 +00:00
|
|
|
If your distribution is not supported by the binary RPMs from PostgreSQL.org,
|
2012-09-10 15:15:54 +00:00
|
|
|
you will need to rebuild from the source RPM.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2012-09-10 15:15:54 +00:00
|
|
|
If you have not previously rebuilt any RPMs, set up the required environment:
|
|
|
|
make a work directory, say ~/rpmwork, then cd into it and do
|
|
|
|
mkdir BUILD BUILDROOT RPMS SOURCES SPECS SRPMS
|
|
|
|
Then make a file ~/.rpmmacros containing
|
|
|
|
%_topdir <full path to work directory here>
|
|
|
|
|
|
|
|
Download the postgresql .src.rpm for the release you want and place it in
|
|
|
|
the SRPMS subdirectory, then cd there and execute
|
|
|
|
rpmbuild --rebuild postgresql-nnn.src.rpm
|
|
|
|
The results will appear under the RPMS subdirectory.
|
|
|
|
|
|
|
|
You will have to have a full development environment to rebuild the RPM set.
|
|
|
|
If rpmbuild complains of lack of certain packages, install them and try
|
|
|
|
again. In some cases, you can disable features to avoid needing some
|
|
|
|
development packages, as detailed next.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
This release of the RPMset includes the ability to conditionally build
|
|
|
|
sets of packages. The parameters, their defaults, and the meanings are:
|
|
|
|
|
2004-09-09 10:39:06 +00:00
|
|
|
beta 0 #build with cassert and do not strip the binaries
|
2012-09-10 15:15:54 +00:00
|
|
|
runselftest 1 #do "make check" during the build
|
|
|
|
test 1 #build the postgresql-test package
|
|
|
|
upgrade 1 #build the postgresql-upgrade package
|
|
|
|
plpython 1 #build the PL/Python procedural language package
|
|
|
|
plpython3 1 #build the PL/Python3 procedural language package
|
|
|
|
pltcl 1 #build the PL/Tcl procedural language package
|
|
|
|
plperl 1 #build the PL/Perl procedural language package
|
|
|
|
ssl 1 #build with OpenSSL support
|
|
|
|
kerberos 1 #build with Kerberos 5 support
|
|
|
|
ldap 1 #build with LDAP support
|
|
|
|
nls 1 #build with national language support
|
|
|
|
pam 1 #build with PAM support
|
|
|
|
sdt 1 #build with SystemTap support
|
2009-08-18 02:58:55 +00:00
|
|
|
xml 1 #build with XML support
|
2006-03-02 19:04:52 +00:00
|
|
|
pgfts 1 #build with --enable-thread-safety
|
2012-09-10 15:15:54 +00:00
|
|
|
selinux 1 #build contrib/selinux
|
2009-08-18 02:58:55 +00:00
|
|
|
uuid 1 #build contrib/uuid-ossp
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
To use these defines, invoke a rebuild like this:
|
2012-09-10 15:15:54 +00:00
|
|
|
rpmbuild --rebuild --define 'plpython 0' --define 'pltcl 0' \
|
2009-08-18 02:58:55 +00:00
|
|
|
--define 'test 0' --define 'runselftest 0' --define 'kerberos 0' \
|
2012-09-10 15:15:54 +00:00
|
|
|
postgresql-9.2.0-1.src.rpm
|
|
|
|
This line would disable the plpython, pltcl, and test subpackages, disable
|
|
|
|
the regression test run during build, and disable kerberos support.
|
2005-01-19 05:02:11 +00:00
|
|
|
|
|
|
|
You might need to disable runselftest if there is an installed version of
|
|
|
|
PostgreSQL that is a different major version from what you are trying to
|
|
|
|
build. The self test tends to pick up the installed libpq.so shared library
|
|
|
|
in place of the one being built :-(, so if that isn't compatible the test will
|
|
|
|
fail. Also, you can't use runselftest when doing the build as root.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
More of these conditionals will be added in the future.
|
|
|
|
|
|
|
|
CONTRIB FILES
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
The contents of the contrib tree are packaged into the -contrib subpackage
|
2004-09-09 10:41:55 +00:00
|
|
|
and are processed with make and make install. There is documentation in
|
|
|
|
/usr/share/doc/postgresql-contrib-VERSION for these modules. Most of the
|
2009-08-18 02:58:55 +00:00
|
|
|
modules are in /usr/lib/pgsql (or /usr/lib64/pgsql) for loadable
|
|
|
|
modules, and binaries are in /usr/bin. In the future these files may be
|
|
|
|
split out, depending upon function and dependencies.
|
2004-09-09 10:37:06 +00:00
|
|
|
|
|
|
|
MORE INFORMATION
|
|
|
|
-------------------------------------------------------------------------------
|
2006-03-02 19:04:52 +00:00
|
|
|
You can get more information at http://www.postgresql.org and
|
2009-08-18 02:58:55 +00:00
|
|
|
http://yum.pgsqlrpms.org
|
2004-09-09 10:37:06 +00:00
|
|
|
|
2005-11-07 21:54:56 +00:00
|
|
|
Please help make this packaging better -- let us know if you find problems, or
|
2009-08-18 02:58:55 +00:00
|
|
|
better ways of doing things. You can reach us by e-mail at
|
2006-03-02 19:04:52 +00:00
|
|
|
pgsqlrpms-hackers@pgfoundry.org
|
2005-11-07 21:54:56 +00:00
|
|
|
-------------------------------------------------------------------------------
|