连接GaussDB(DWS)报错:Invalid or unsupported by client SCRAM mechanisms

用postgres方式连接GaussDB(DWS)报错:Invalid or unsupported by client SCRAM mechanisms

报错内容

[2023-12-27 21:43:35] Invalid or unsupported by client SCRAM mechanisms
org.postgresql.util.PSQLException: Invalid or unsupported by client SCRAM mechanisms

原因:password_encryption_type未兼容postgres访问

"使用show password_encryption_type可以查看密码的加密方式。当password_encryption_type=1是表示采用sha256方式对密码加密,兼容postgres客户端的MD5用户认证方式。password_encryption_type=2表示采用sha256方式对密码加密,此时不兼容postgres开源驱动和开源客户端。使用postgres开源生态工具连接会出现报错,连接GaussDB(DWS)出现如下报错:

The authentication type 10 is not supported.

Invalid or unsupported by client SCRAM mechanisms。"

解决办法:

1、修改password_encryption_type=1

2、需要重新创建用户去连接,用户模式下新增表,再次连接成功

连接参考:https://zhuanlan.zhihu.com/p/646963995

连接和认证 - 安全和认证(postgresql.conf) - 《华为 openGauss (GaussDB) 1.0.1 使用手册》

【DWS】某局点使用工具连接数据库报错 (huawei.com)

你应该知道的数仓安全——安全认证-云社区

猜你喜欢

转载自blog.csdn.net/fen_fen/article/details/135263927