阻止PostgreSQL在Ubuntu中启动时启动

前端之家收集整理的这篇文章主要介绍了阻止PostgreSQL在Ubuntu中启动时启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Postgresql 9.2,它在我启动系统时自动运行(Kubuntu).

我怎么能避免这个?

我需要手动启动它,我不希望它无人值守,因为我需要查看控制台.

Ubuntu或Debian可以运行Postgresql的多个实例,并提供自动启动/停止/启动每个群集的特定方法.

在/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
原文链接:https://www.f2er.com/postgresql/192238.html

猜你在找的Postgre SQL相关文章