我创建的jasper报告模块比在opener 7.0中创建报告后创建的错误显示
报告错误
无法在com.nantic.jasperreports.JasperServer类中调用方法execute:FATAL:用户“gopal”的密码验证失败
答案 0 :(得分:0)
你应该检查.conf,在我的例子中是openerp-server.conf,并检查字段db_password上是否有错误。此字段包含用于访问数据库的openerp用户密码。在我的情况下,我的.conf看起来像这样:
[options]
; This is the password that allows database operations:
admin_passwd = myPass
db_host = false
db_port = false
db_user = openerp
db_password = 1234
addons_path = my_path/dev_core/addons, my_path/dev_core/my_modules
一开始我没有为我的用户openerp设置密码,所以我的db_password是假的,当我开始使用jasper报告时,我必须设置密码,如果是你的情况你可以设置一个密码是这样的:
su root
su postgres
psql
postgres=# alter user openerp password '1234';