Redmine postgresql致命:对用户" redmine"

时间:2012-03-30 12:29:49

标签: postgresql authentication redmine

遵循这些说明(使用postgresql而不是mysql): http://www.redmine.org/projects/redmine/wiki/Redmine_on_CentOS_installation_HOWTO

运行此命令时:

RAILS_ENV=production bundle exec rake db:migrate

rake显示错误消息:

FATAL:  Ident authentication failed for user "redmine"

...

3 个答案:

答案 0 :(得分:2)

没有必要为redmine修改pg_hba.conf。首先检查您的数据库角色配置是否正确:

    su - postgres
    psql -d redmine -U redmine -h localhost
    <password challenge>

如果密码被接受,则下一步是确认您已安装libopenssl-ruby

答案 1 :(得分:1)

你应该让postgres用户名与你的linux用户名相同 它比修改“pg_hba.conf”文件

更容易

答案 2 :(得分:0)

这对我有用:

psql redmine redmine -h localhost

-h localhost部分有所不同。