私はローカルでPostgreSQLデータベースを作成しました。 Postgre databasepostgresのRuby on Rails認証エラー
ここに私のdatabase.ymlファイルがあります。 デフォルト:&デフォルト アダプタ:postgresqlの プール:5 タイムアウト:5000
development:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
# 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:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
production:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
私は、正しいパスワードを入力してください行われてきたが、私はまだ、このエラーを取得しています。
パスワードからパスワードを削除してみませんか?また、どのようにあなたのデータベースを作成するのですか?実際にこのパスワードをpsqlに設定しましたか? – NeoVe