文章目录
1.问题
2.如何解决?
2.1设置useSSL=false
2.2设置useSSL = true
1. 问题
Hive能正常执行任务,但出现“WARN: Establishing SSL connection without server’s identity verification is not recommended.”
意思就是:不建议不使用服务器身份验证建立SSL连接。产生的原因是使用JDBC连接MySQL服务器时没有设置useSSL的参数。不处理的话,会一直产生警告,输出很多无用的信息!
SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整性的一种安全协议。2. 如何解决?
根据告警提示有两种解决方法:
2.1 设置useSSL=false
注意: hive 的配置文件是 .XML 格式,而在 xml 文件中& 才表示 & ,在配置文件中需要把 & 符号进行转义。如hive-site.xml进行如下设置
- <property>
- <name>javax.jdo.option.ConnectionURL</name>
- <value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true&useSSL=false</value>
- <description>JDBC connect string for a JDBC metastore</description>
- </property>
- 复制代码
2.2 设置useSSL = true
设置useSSL = true并为服务器证书验证提供信任库
- <property>
- <name>javax.jdo.option.ConnectionURL</name>
- <value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true&useSSL=true</value>
- <description>JDBC connect string for a JDBC metastore</description>
- </property>
- 复制代码