关于致命错误28000: 角色 “Administrator“ 不存在的问题解决
Posted 瀚高PG实验室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于致命错误28000: 角色 “Administrator“ 不存在的问题解决相关的知识,希望对你有一定的参考价值。
目录
环境
症状
问题原因
解决方案
环境
系统平台:Microsoft Windows (64-bit) 2012
版本:5.6.5
症状
程序里报的具体错误信息如下:
[Druid-ConnectionPool-Create-xxxxxx64] ERROR com.alibaba.druid.pool.DruidDataSource - create connection SQLException,
url: jdbc:highgo://xx.xx.xx.xx:5866/dbnamexx?loadBanlanceHosts=true, errorCode 0, state 28000
com.highgo.jdbc.util.PSQLException: 致命错误: 28000: 角色 “Administrator” 不存在
问题原因
应用程序的配置文件错误:username写成了sername
datasource:
url:jdbc:highgo://xx.xx.xx.xx:5866/dbnamexx?loadBanlanceHosts=true
sername: xxxx
password: xxxx
driver-class-name: com.highgo.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
解决方案
应用程序的配置文件修改正确即可,如下所示:
datasource:
url:jdbc:highgo://xx.xx.xx.xx:5866/dbnamexx?loadBanlanceHosts=true
username: xxxx
password: xxxx
driver-class-name: com.highgo.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
把参数sername改成username,问题解决。
以上是关于关于致命错误28000: 角色 “Administrator“ 不存在的问题解决的主要内容,如果未能解决你的问题,请参考以下文章
如何解决这个问题以使用 psql? | psql:错误:致命:角色“postgres”不存在
无法连接到 PostgreSQL 服务器:致命:角色“apache”不存在