最近新しいマシンを手に入れたので、Github から自分のプロジェクトに取り組みたいと思っています。ローカル マシンで Postgres データベースを適切にセットアップする方法に興味があります。がありpostgresql
、 Ubuntu (12.04)pgadmin3
にlibpq-dev
インストールされています。
プロジェクトをプルダウンします。
git clone https://github.com/thebenedict/cowsnhills.git
そして実行します:
bundle
.
私が実行すると:
rake db:create && rake db:schema:load
次のエラーが表示されます。
rake db:create && rake db:schema:load
FATAL: password authentication failed for user "cnh"
FATAL: password authentication failed for user "cnh"
....
ファイルは次のconfig/database.yml
ようになります。
development:
adapter: postgresql
encoding: unicode
host: localhost
database: cnh_development
pool: 5
username: cnh
password: cnh
test:
adapter: postgresql
encoding: unicode
host: localhost
database: cnh_test
pool: 5
username: cnh
password: cnh
production:
adapter: postgresql
encoding: unicode
host: localhost
database: cnh_production
pool: 5
username: cnh
password: cnh
このプロジェクトをローカル マシンで実行できるように Postgres データベースをセットアップする適切な方法は何ですか?
Railsサーバーを起動すると、次のようになります。