2

PostgreSQLをhomebrewでインストールしました:

$ brew install postgresql

私はpggemを次のようにインストールしました:

 $ gem install pg -- --with-pg-config= '/usr/local/var/postgres/postgresql.conf'

アプリのdatabase.ymlをに変更しました

development:
  adapter: postgresql
  encoding: unicode
  database: rails_dev
  pool: 5
  username: vise890
  password:

test:
  adapter: postgresql
  encoding: unicode
  database: rails_test
  pool: 5
  username: vise890
  password:

production:
  adapter: postgresql
  encoding: unicode
  database: ddb
  port: 5432
  pool: 5
  username: postgres
  password: admin

ただし、ページをロードするたびにエラーが発生します。

ActiveRecord::ConnectionNotEstablished

pgAdmin(u:vise890 P:{none})を使用してデータベースに接続でき、データベースが表示されます。

RubyonRailsチュートリアルのexample3を実行しています

全体を確認したい場合:サンプルアプリのgithubブランチ

よろしくお願いします!

4

1 に答える 1

1

分かった、気にしないで。私は最初から始めて、それはうまくいきました。興味がある場合のウォークスルーは次のとおりです

于 2012-06-05T12:29:31.710 に答える