ruby-on-rails – 使database.yml文件在OSX上的Rails中运行

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 使database.yml文件在OSX上的Rails中运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道在osx上使用postgres有点困难,因为它有自己的版本运行,所以为了psql到它你需要提供像这样的主机名

psql -h localhost mydatabasename -U me

但是,如何为您的database.yml文件执行此操作以获取所有轨道可爱性.

如果您尝试连接

development:
  adapter: postgresql
  username: me
  database: mydatabasename

你收到了经典

Couldn't create database for {"adapter"=>"postgresql","username"=>"me","database"=>"mydatabasename"}
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"?

关于如何提供信息或配置osx的任何想法都不要吮吸这么多?!

解决方法

如果您能够使用psql连接到localhost上的Postgres,那么只需添加
host: localhost

到database.yml

原文链接:https://www.f2er.com/ruby/271213.html

猜你在找的Ruby相关文章