RE: starting postmaster problems

Patrick Coulombe <11h11@videotron.ca>

From: "Patrick Coulombe" <11h11@videotron.ca>
To: "pgsql-novice" <pgsql-novice@postgresql.org>
Date: 2000-10-13T14:57:53Z
Lists: pgsql-novice
on my server, this is how i do it :

in etc/rc.d/rc.local :
/bin/su - postgres -c "/home/postgres/runpostgres"

runpostgres :
#!/bin/sh
export LC_CTYPE=koi8-r
export LC_COLLATE=koi8-r
postmaster -i -B 1024 -S -D/usr/local/pgsql/data/ -o '-Fe'


note that i run postgresql 6.
pat