Versions Compared

Key

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

install

Code Block
$ su root
$ yum install postgresql postgresql-server

...

Code Block
su -c '/usr/bin/pg_ctl start -l /var/lib/pgsql/serverlog -D /usr/localu01/pgsql/data' postgres

should be in this file

Code Block
/etc/rc.d/rc.local

security

Once you start making non-local request to the database,
you need to tell Postgres that its OK to talk talk to stranger.
You do this by making changes to

...