Ubuntu或Debian可以运行Postgresql的多个实例,并提供自动启动/停止/启动每个群集的特定方法.
原文链接:https://www.f2er.com/postgresql/192238.html在/etc/postgresql/9.2/main(或更一般地说是/ etc / postgresql /< version> /< clustername>)中应该有一个名为start.conf的文件,其中包含以下不言自明的内容:
# Automatic startup configuration # auto: automatically start/stop the cluster in the init script # manual: do not start/stop in init scripts,but allow manual startup with # pg_ctlcluster # disabled: do not allow manual startup with pg_ctlcluster (this can be easily # circumvented and is only meant to be a small protection for # accidents). auto
如果您通过手动替换auto,则只能在需要时使用以下命令启动此Postgresql实例:
sudo pg_ctlcluster 9.2 main start
至于查看控制台,您需要的是在使用数据库时在终端中运行:
tail -f /var/log/postgresql/postgresql-9.2-main.log