美文网首页
mac下postgresql的使用

mac下postgresql的使用

作者: wylszz | 来源:发表于2017-05-16 14:03 被阅读0次

mac异常关机后总是无法使用postgresql数据库,解决办法:
删除postmaster.pid文件,然后重新启动postgresql。

启动 PostgreSQL:

pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

关闭 PostgreSQL:

pg_ctl -D /usr/local/var/postgres stop -s -m fast

在 mac 下,可以利用 homebrew 直接安装 PostgreSQL:

brew install postgresql -v

稍等片刻,PostgreSQL 就安装完成。接下来就是初始数据库,在终端执行一下命令,初始配置 PostgreSQL:

initdb /usr/local/var/postgres -E utf8

上面指定 "/usr/local/var/postgres" 为 PostgreSQL 的配置数据存放目录,并且设置数据库数据编码是 utf8,更多配置信息可以 "initdb --help" 查看。
设成开机启动 PostgreSQL:

ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

参考:http://www.cnblogs.com/shineqiujuan/p/4703304.html

相关文章

网友评论

      本文标题:mac下postgresql的使用

      本文链接:https://www.haomeiwen.com/subject/hodlxxtx.html