hive-metastore 连接postgresql

报错The authentication type 10 is not supported

修改pg_hba.conf配置文件当中的ipv4如下

# TYPE  DATABASE        USER            ADDRESS                 METHOD# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
#host   all             all             127.0.0.1/32            trust
host    all             all             0.0.0.0/0               trust
# IP6 local connections:
host    all             all             ::1/128                 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     trust
host    replication     all             127.0.0.1/32            trust
host    replication     all             ::1/128                 trusthost all all all scram-sha-256

或者

解决方法将pg_hba.conf由"host all all all scram-sha-256"改"host all all all trust"
····

The authentication type 10 is not supported

The authentication type 10 is not supported相关推荐

  1. navicat连接pgsql报错:authentication method 10 not supported

    navicat连接pgsql报错:authentication method 10 not supported 解决方案:找到pgsql的安装目录下的pg_hba.conf文件 用文本编辑器打开后做如 ...

  2. SQLAlchemy 报错 NotSupportedError: Authentication plugin ‘caching_sha2_password’ is not supported 解决方法

    报错内容 在使用 python SQLAlchemy 连接数据库时,遇到以下错误: NotSupportedError: Authentication plugin 'caching_sha2_pas ...

  3. 【纠错】——mysql Authentication plugin ‘caching_sha2_password‘ is not supported问题处理

    mysql Authentication plugin 'caching_sha2_password' is not supported问题处理 使用mysql8.0版本,登录失败,提示 Authen ...

  4. 请求状态为200,前端报系统出错,后端日志报“Content type ‘application/octet-stream‘not supported“错误

    请求后端出现"Content type 'application/octet-stream'not supported"错误 错误描述: Content type 'applica ...

  5. PostgreSQL使用Navicat连接pgsql时出现authentication method 10 not supported的解决办法

    解决办法 修改pgsql的安装目录下的pg_hba.conf文件 # TYPE DATABASE USER ADDRESS METHOD# "local" is for Unix ...

  6. navicat连接postgresql时报错:authentication method 10 not supported

    修改配置文件: C:\postgreSQL\9.5\data\pg_hba.conf #"local" is for Unix domain socket connections ...

  7. Error: pgraster_wkb_reader: grayscale band type 10 unsupported

    错误原因:Float32 is not supported for rendering.即栅格数据类型Float32不支持. cmd中用GDAL查看.在波段中的数据类型是Float32的不支持渲染. ...

  8. 【数据库bug修复】——Authentication plugin ‘caching_sha2_password‘ is not supported

    目录 原因 连接数据库的时候出现这个问题的解决方法 创建数据库连接池时解决方法 原因 使用客户端链接mysql数据库,如果数据库版本高于8.0,可能出现以上问题,因为8.0以前默认使用mysql_na ...

  9. Field [price] of type [text] is not supported for aggregation [avg]

    原因:text类型不支持求平均值,改为float PUT http://localhost:9201/shopping/_mapping {"properties":{" ...

  10. Postgresql从MD5密码验证改为SCRAM-SHA-256

    随着密码学技术的发展,MD5哈希算法构造的密码越来越不安全,所以,PG顺应发展,从10版本开始支持了SCRAM-SHA-256加密算法,因为使用的新的哈希算法.使得在暴力破解的时候花费的代价更加昂贵. ...

最新文章

  1. 五连阳回调买入法_只要出现“4连阳+1阴”形态,坚定满仓干进去,百分百是主升浪...
  2. urlencode和quote的用法
  3. 从民工到CCNA-献给想考认证的朋友
  4. linux脚本开机自动执行脚本文件,如何让linux开机自动执行sata里头的脚本文件
  5. vue3-network 无效
  6. apache的es的原理_ElasticSearch原理
  7. BZOJ3028食物——生成函数+泰勒展开
  8. PHP 解析xml(包含非英文字符)
  9. Linux入门学习(五)
  10. MongoDB 官方C#驱动 封装 DbHelper
  11. Qt4_实现自定义委托
  12. BAT校招产品经理:52道经典面试问题解答思路
  13. 腾讯QQ会员技术团队:人人都可以做深度学习应用:入门篇(下)
  14. 实用ps教程-第一节:使用ps制作GIF动图
  15. 西湖大学校长---施一公讲座
  16. 实用工具 - 小众软件
  17. nagios的配置官方文档篇
  18. MongoDB 3.4安装及配置
  19. 系统安装-U盘安装Windows XP SP3纯净版简述
  20. Firefox 和 Firefox Nightly 同步服务:切换国内和国际服务器的方法

热门文章

  1. 常用的神经网络控制结构,神经网络控制的特点
  2. Google, with new Pixel and camera, is serious about devices
  3. choco安装软件包指定版本
  4. 自制卡牌游戏Python
  5. sam格式的结构和意义_sam概述
  6. 美国弗吉尼亚大学计算机科学,弗吉尼亚大学UVa计算机科学Computer Science专业排名第201-250位(2021年THE世界大学商科排名)...
  7. 手把手 | 用Python语言模型和LSTM做一个Drake饶舌歌词生成器
  8. html-HR标签分割线
  9. ABAP BAPI 复制标准项目模板实现项目立项
  10. 150. 逆波兰表达式求值(中等 栈 数组)