Hi Sirs,
I would like more than one OS user can access the same DB in the same cluster.
For a user like postgres I had these commands:
# adduser postgres
# mkdir /usr/local/pgsql/data
# chown postgres /usr/local/pgsql/data
# su -postgres
$ ./initdb -D /usr/*/data --> here login as an postgres in terminal
$ ./postgres -D /usr/*/data --> here login as an postgres in terminal, too.
So when I want to access or issue the command :
/usr/local/pgsql/bin/psql postgres as an another OS user, what should I do?!
SARA