# PostgreSQL's Database Directory PGDATA="/var/lib/postgresql/8.2/data" # Options to pass to PostgreSQL's initdb. # At the very least this should contain a valid locale. # Run 'locale -a' to see which locales are available on your system. # More information at: # http://www.postgresql.org/docs/8.4/static/locale.html # http://www.postgresql.org/docs/8.4/static/multibyte.html # Uncomment the following line to set locale. #PG_INITDB_OPTS="--locale=en_US.UTF-8" # PostgreSQL User PGUSER="postgres" # Which port and socket to bind PostgreSQL PGPORT="5432" # Extra options to run postmaster with, e.g.: # -N is the maximal number of client connections # -B is the number of shared buffers and has to be at least 2x the value for -N # Please read the man-page to postmaster for more options. Many of these options # can be set directly in the configuration-file. #PGOPTS="-N 512 -B 1024" # Allow server 60 seconds to start or stop. # Can disable waiting by changing to '-W' (capital W) WAIT_FOR_START="-w" WAIT_FOR_STOP="-w" # Ignore new connections and wait for clients to disconnect from server # before shutting down. NICE_QUIT="YES" # Forecfully disconnect clients from server and shut down. This is performed # after NICE_QUIT. Terminating a client results in a rollback of open # transactions for that client. RUDE_QUIT="YES" # If the server still fails to shutdown, you can force it to quit by setting # this to yes and a recover-run will execute on the next startup. FORCE_QUIT="NO" # Pass extra environment variables # If you have to export environment variables for the database process, # this can be done here. #PG_EXTRA_ENV=""