使用远程Postgres连接在本地使用rails应用程序?

时间:2013-10-21 04:45:36

标签: ruby-on-rails ruby postgresql heroku pg

有没有办法配置database.yml文件远程连接到Heroku的Postgres?

我无法理解Heroku,Rails和PG gem如何协同工作。

看起来在部署期间,Heroku重写了database.yml文件 - 是否可以查看此更新的.yml文件的内容并在本地使用?

3 个答案:

答案 0 :(得分:26)

以下是从本地开发中访问Heroku数据库的步骤:

  1. 登录您的heroku帐户。

  2. 导航到此URL https://postgres.heroku.com/databases/或者您可以通过在终端中运行此命令来获取heroku db url:heroku pg:credentials:url

  3. 选择您的应用程序数据库。

  4. 您将能够看到您的heroku pg凭据:

    Host         xxxxxxxxx.77777.amazonaws.com
    Database     42feddfddeee 
    Username         44444444444
    Port         xxxx
    Password     777sfsadferwefsdferwefsdf
    
  5. 收集上述详细信息并输入您的databse.yml文件开发evn:

    adapter: postgresql  
    host: < host >                            # HOST 
    port: < port >                            # Port  
    database: < database name >               # Database Name  
    username: < user_name >                   # User Name  
    password: '< password >'                  # Password 
    
  6. 重启你的应用程序,

    祝您好运.. !!

答案 1 :(得分:1)

我是一个新手,可能误解了你的问题 - 但是。使用postgress数据库开发了一个ROR应用程序。然后上传到Heroku。我运行DB/Migrate/schema.rb来设置远程Postgresql数据库。

从内存heroku运行rake db:init(但我可能是错的)。当我在开发中更新数据库以在Heroku中获取更新时,我必须提升代码并运行heroku run rake db:migrate

来自我的config/dtabase.yml

development:
  adapter: postgresql
  encoding: unicode
  database: di_development
  pool: 5
  username: davidlee
  password:
test:
  adapter: postgresql
  encoding: unicode
  database: di_test
  pool: 5
  username: davidlee
  password:
production:
  adapter: postgresql
  encoding: unicode
  database: di_production
  pool: 5
  username: user
  password:
  • 它有效。我不记得做了别的事。

皮尔

答案 2 :(得分:1)

我不是postgres用户,但这应该有效。 您可以更改database.yml以包含hostport

production:
  adapter: postgresql
  encoding: unicode
  database: di_production
  pool: 5
  username: user
  password:
  host: heroku.host.name
  port: <postgres listen port>

当然,您应该允许在服务器端进行连接,包括防火墙级别和数据库级别。

查看#{Rails.root}/config/database.yml内容的简单方法是编写代码将此yml加载到对象中,然后在UI上打印出来

DB_CONFIG = YAML.load(File.read("#{Rails.root}/config/database.yml", __FILE__))
puts DB_CONFIG["production"].inspect  # or what ever method you want to print it