Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CLAIMS Direct requires a working PostgreSQL cluster. If you do not have an initialized cluster, the following steps will initialize the cluster and give you rudimentary authentication and access levels needed to run CLAIMS Direct.

 

su - postgres

 

# -D, --pgdata: specify location of pg data segment
# -X, --xlogdir: specify location of pg xlog segment
initdb -A trust \
       -D /var/lib/pgsql/data \
       -E utf8 \
       -X /pgxlog

...