我有2台服务器。
在文件config/database.yml
中,我具有以下代码:
production:
adapter: <%= ENV['DB_ADAPTER'] ||= 'postgresql' %>
encoding: utf8
pool: 5
host: 127.0.0.1
username: my_pg_username
password: my_pg_password
database: my_pg_database
它在AWS中工作正常,但是Heroku中的连接数据不同。
为解决这个问题,我在两个服务器上都创建了一些环境变量。
在Heroku中,非常容易。我转到“应用程序设置”,然后在“配置变量”中设置名称和值。
在AWS中,我:
sudo nano .profile
编辑文件.profile
添加代码
export PG_DB_HOST='127.0.0.1'
export PG_DB_USER='my_pg_user'
export PG_DB_PASS='my_pg_password'
export PG_DB_NAME='my_pg_database'
之后,我在终端中运行这些相同的代码。这样,环境变量将持续存在。
要测试环境变量是否正常运行,我登录服务器并登录rails console
,然后键入变量并正确返回值。
在文件config/database.yml
中,我更改了代码:
production:
adapter: <%= ENV['DB_ADAPTER'] ||= 'postgresql' %>
encoding: utf8
pool: 5
host: <%= ENV['PG_DB_HOST'] %>
username: <%= ENV['PG_DB_USER'] %>
password: <%= ENV['PG_DB_PASS'] %>
database: <%= ENV['PG_DB_NAME'] %>
在Heroku中,部署后工作正常。
在AWS中,运行cap production deploy
时出现错误。在任务rake db:migrate
中,出现此错误:
01 bundle install --path /home/ubuntu/myapp/shared/bundle --without development test --deployment --quiet
✔ 01 ubuntu@XX.XX.XX.XXX 4.514s
00:27 deploy:migrate
[deploy:migrate] Run `rake db:migrate`
00:28 deploy:migrating
01 bundle exec rake db:migrate
01 DEPRECATION WARNING: The configuration option `config.serve_static_assets` has been renamed to `config.serve_static_files` to c…
01
01 rake aborted!
01
01 ActiveRecord::NoDatabaseError: FATAL: role "ubuntu" does not exist
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/postgresql_adapter…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/postgresql_adapter…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/postgresql_adapter…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/postgresql_adapter…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/postgresql_adapter…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/abstract/connectio…
01
01 /home/ubuntu/myapp/shared/bundle/ruby/2.2.0/gems/activerecord-4.2.1/lib/active_record/connection_adapters/abstract/conn
如果我返回到旧值,则可以。使用env变量会中断。
环境
ruby -v: ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
rails -v: Rails 4.2.3
pg_config --version: PostgreSQL 9.3.8
psql --version: psql (PostgreSQL) 9.3.8
bundle -v: Bundler version 1.13.7
Ubuntu 14.04.2 LTS
我感谢任何帮助。谢谢!
答案 0 :(得分:0)
Somar-
您可以尝试一次切换到ENV变量。首先将config/database.yml
更新为使用ENV['PG_DB_HOST']
,而将其他值保留为硬编码。尝试部署,看看是否收到错误。如果没有,请继续添加其余的ENV变量,直到部署失败。
这可能有助于您确定某个特定的ENV变量是否引起了该问题。
谢谢!