1

我对红宝石很陌生。我正在尝试运行BBYIDX并遵循如何在 Windows 上安装 BBYIDX?

当我尝试rake db:migrate时,它会重现错误

(in /home/virinchy/BBYIDX-2/BBYIDX-master)  
DEPRECATION WARNING: Rake tasks in vendor/plugins/acts_as_tsearch/tasks,   vendor/plugins/acts_as_tsearch/tasks, vendor/plugins/delayed_job/tasks,   vendor/plugins/nested_scenarios/tasks, vendor/plugins/rails-authorization-plugin/tasks, and   vendor/plugins/rails_rcov/tasks are deprecated. Use lib/tasks instead. (called from /usr/local/rvm/gems/ruby-1.8.7-p371/gems/rails-2.3.11/lib/tasks/rails.rb:10)  
rake aborted!  
FATAL:  password authentication failed for user "bbyidx"  
FATAL:  password authentication failed for user "bbyidx"
Bundle install was succesful with message as:Your bundle is complete!  
Use `bundle show [gemname]` to see where a bundled gem is installed. 

但是rake db:migrate会产生这个错误。我正在跑步ubuntu 12.04, ruby-1.8.7,rails-2.3.11gem 1.5.3

我该如何解决这个问题?提前致谢。

4

1 回答 1

4

Did you set a password for your postgres user?

In your config/database.yml you should have your databases set up properly:

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
于 2013-04-23T15:16:41.407 回答