pg-setup
pg-setup — set up a new Postgres Pro database cluster and manage the corresponding service
Synopsis
pg-setup
initdb
[initdb_options
]
pg-setup
find-free-port
pg-setup
set-server-port
port
pg-setup
service
service_option
Description
pg-setup is a shell script provided in the Postgres Pro distribution to automate database cluster setup on Linux systems. This script is provided as part of the postgrespro-std-10-server
package. Once Postgres Pro is installed, you can find pg-setup in the
directory, where install-dir
/bininstall-dir
is /opt/pgpro/std-10
.
pg-setup must be run as root, but performs database administration operations as user postgres
. You can run this script with different options to:
initialize the database cluster
check for available ports and change the port used by Postgres Pro server
enable/disable automatic startup of Postgres Pro service
start, stop, or restart Postgres Pro service
Options
pg-setup accepts the following command-line arguments:
initdb [
initdb_options
]Initialize the database cluster on behalf of the
postgres
user.By default, the database cluster is initialized in the
/var/lib/pgpro/std-10/data
directory, with checksums enabled,auth-local
parameter set topeer
, andauth-host
parameter set tomd5
. Localization settings are inherited from theLANG
environment variable for the current session. All theLC_*
environment variables are ignored. Optionally, you can provide initdb options to customize the installation.Important
With pg-setup, you cannot initialize the database cluster with checksums disabled or choose the data directory. If this is not what you expect, do not use pg-setup for cluster initialization and run initdb directly instead.
find-free-port
Search for a free port on your system. This option is useful if you are going to install more than one server instance, or the default 5432 port is used by another program.
set-server-port
port
Specify the port number on which the server will listen for connections. Use this option to avoid conflicts if you are installing more than one server instance on the same system.
Default: 5432
service
service_option
Manage Postgres Pro service using one of the following options:
enable
— enable automatic service startup upon system restart.disable
— disable automatic service startup upon system restart.start
— start the service.stop
— stop the service.condrestart
— restart the service if it is running when pg-setup is invoked.status
— return the Postgres Pro service status.
Notes
If you are installing Postgres Pro from the postgrespro-std-10
package, pg-setup is invoked automatically with the default settings. As a result, the database cluster is initialized and the default database is created in the /var/lib/pgpro/std-10/data
directory, Postgres Pro service autostart is enabled, and the service is started.
If you are installing Postgres Pro server directly from the postgrespro-std-10-server
package, you can run this script manually to initialize the database cluster or manage the Postgres Pro service.
For details on binary installation specifics on Linux, see Section 16.1.