Bạn đã đặt mật khẩu cho postgres
của mình chưa người dùng?
Trong config/database.yml
của bạn bạn nên thiết lập cơ sở dữ liệu của mình đúng cách:
development:
adapter: postgresql
encoding: unicode
database: your_app_development # name your development app something
host: localhost
pool: 5
username: your_username
password: your_password # or leave blank if you didn't set a password
test:
adapter: postgresql
encoding: unicode
database: your_app_test
host: localhost
pool: 5
username: your_username
password: your_password