在OpenBSD上配置PostgreSQL

在OpenBSD上配置PostgreSQL,第1张

概述当PostgreSQL安装完成后,我们进行以下 *** 作  su - _postgresql initdb -D /var/postgresql/data -U postgres -E UTF8 -A md5 -W 之后我们需要配置自动启动 OpenBSD 5.6版本 配置自动启动rc.local if [ -x /usr/local/bin/pg_ctl ]; then        echo -

当Postgresql安装完成后,我们进行以下 *** 作

su-_postgresqlinitdb-D/var/postgresql/data-Upostgres-EUTF8-Amd5-W

之后我们需要配置自动启动

OpenBSD 5.6版本

配置自动启动rc.local

if[-x/usr/local/bin/pg_ctl];thenecho-n'postgresql'su-l_postgresql-c"nohup/usr/local/bin/pg_ctlstart\-D/var/postgresql/data-l/var/postgresql/logfile\-o'-D/var/postgresql/data'>/dev/null"fi

配置自动停止

if[-f/var/postgresql/data/postmaster.pID];thensu-l_postgresql-c"/usr/local/bin/pg_ctlstop-mfast\-D/var/postgresql/data"rm-f/var/postgresql/data/postmaster.pIDfi

OpenBSD 5.7版本

在rc.conf.local中添加

pkg_scripts=postgresql

或使用新的rcctl工具

rcctlenablepostgresql
总结

以上是内存溢出为你收集整理的在OpenBSD上配置PostgreSQL全部内容,希望文章能够帮你解决在OpenBSD上配置PostgreSQL所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1175828.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存