私は基本的な Rails チュートリアルを行っています。「rails s」でサーバーを実行しようとすると、localhost:3000 ブラウザーで ActiveRecord::ConnectionNotEstablished が表示されます。
チュートリアルでは、database.yml に適切な資格情報があることを確認するように指示されていますが、その方法は指示されていません。Postgresql を使用しています。これは私のdatabse.ymlにあるものです:
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: postgresql
database: myrubyblog
username:postgres
password: theoffice
pool: 5
timeout: 5000
host: localhost
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: myrubyblog
username:postgres
password: theoffice
pool: 5
timeout: 5000
host: localhost
production:
adapter: postgresql
database: myrubyblog
username:postgres
password: theoffice
pool: 5
timeout: 5000
host: localhost
ありがとう!