postgresql – Linuxbrew,安装postgres并自动启动服务

postgresql – Linuxbrew,安装postgres并自动启动服务,第1张

概述我在我的Ubuntu上安装 Postgresql: brew安装postgres 我现在有: psql --versionpsql (PostgreSQL) 9.5.0 如何自动启动服务? 在我的Mac上用自制软件我可以用: ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgentslaunchctl load ~/Libr 我在我的Ubuntu上安装 Postgresql:

brew安装postgres

我现在有:

psql --versionpsql (Postgresql) 9.5.0

如何自动启动服务?

在我的Mac上用自制软件我可以用:

ln -sfv /usr/local/opt/postgresql/*.pList ~/library/LaunchAgentslaunchctl load ~/library/LaunchAgents/homebrew.mxcl.postgresql.pList

但是如何在Ubuntu上使用linuxbrew?

我试着用:

brew服务启动postgresql

但它说:

sh: 1: List: not foundError: Could not read the pList for `postgresql`!

该怎么办?

解决方法 不是很自动,而是朝着正确的方向迈出了一步.在我的系统上,我做了以下事情:

$pg_ctl start -D $HOME/.linuxbrew/var/postgres -l logfile

您可以在.bash_profile或.bashrc中简单地创建一个别名:

alias poston="pg_ctl start -D $HOME/.linuxbrew/var/postgres -l logfile"alias postoff="pg_ctl stop -D $HOME/.linuxbrew/var/postgres"

要全部测试(假设您的计算机上还没有数据库),您还可以为当前用户创建一个数据库:

$poston$createdb `whoami`$psql
总结

以上是内存溢出为你收集整理的postgresql – Linuxbrew,安装postgres并自动启动服务全部内容,希望文章能够帮你解决postgresql – Linuxbrew,安装postgres并自动启动服务所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存