Postgres的 - 无法连接到服务器试图耙分贝后:创建:全部(Postgres - could

2019-10-17 15:08发布

我试图让Postgres的起来,在OS X Lion中运行 - 自制软件 - RVM。

http://railscasts.com/episodes/342-migrating-to-postgresql

按照上述指示后,我跑进这里描述了同样的问题:

升级到OSX 10.7狮子后修复PostgreSQL的

运行which psql yieled usr/bin/psql时候它应该是usr/local/bin/psql

好了,我修改这样的路径(这是所有在文件中):

export PATH="/usr/local/bin:$PATH"
[[ -s "/Users/chase/.rvm/scripts/rvm" ]] && source "/Users/chase/.rvm/scripts/rvm"

好-运行source ~/.bash_profile然后which psql ,现在产量usr/local/bin/psql

然而 ,当我去生成一个新的Rails应用程序-d postgresql作为数据库,它的工作,直到我试图rake db:create:all导致

could not connect to server: No such file or directory
    Is the server running locally and accepting
    connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

任何线索?

UPDATE

我结束了在安装Postgres.app: http://postgresapp.com/ -这工作。

Answer 1:

http://postgresapp.com将自己定义为“开始使用PostgreSQL的在Mac上。只要下载,拖动到应用程序文件夹,然后双击最简单的方法”。 它的工作完美的我。



Answer 2:

对于任何阅读和使用Postgres.app,你可能需要主机:本地主机在你的database.yml。 http://postgresapp.com/documentation#toc_3



文章来源: Postgres - could not connect to server after trying rake db:create:all