023.PGSQL-修改数据库连接认证加密方式后报错处理authentication method 10 not supported PostgresSQL
时间:2021-06-24 22:39:48
收藏:0
阅读:589
改回原来的 trust
查看用户加密算法
show password_encryption ;
select * from pg_authid
SELECT rolname,rolpassword FROM pg_authid WHERE rolcanlogin;
SELECT name,setting,source,enumvals FROM pg_settings WHERE name = ‘password_encryption‘;
原文:https://www.cnblogs.com/star521/p/14927864.html
评论(0)