# yast -i postgresql # oder so
# grep postgres /etc/passwd # check auf postgres user
# useradd -s /bin/sh -h /path/to/pgsql-data postgres # user anlegen falls nicht vorhanden
# vi /path/to/pgsql-data/pg_hba.conf # authentifizierung ändern falls gewünscht
# su postgres -c 'initdb -D /path/to/pgsql-data'
# su postgres -c 'postgres -D /path/to/pgsql-data > /var/log/postgres 2>&1 &'
~
|