我试图让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/ -这工作。