I've installed a postgres db on my debian squeeze. There's a /etc/init.d/postresql to control the database. When I type pstree -c, I get two traces with postgresql. After /etc/init.d/postgresl stop I have still one trace left with postgresql. Where do I have to look for this issue? Is there an entry to start another postgresql at booting time? Where can I see this?
| ||||
|
feedback
|
|
Assuming you have PostgreSQL installed from repository packages (e.g.
You can check all registered clusters by
Manual mode (as opposite to
there is still one working server's instance: pg_lsclusters Version Cluster Port Status Owner Data directory Log file 8.4 main 5432 down postgres /var/lib/postgresql/8.4/main /var/log/.. 8.4 test 5433 online postgres /var/lib/postgresql/8.4/test /var/log/.. and
To shut down remaining instance explicitly use:
| |||||
feedback
|