我正在尝试将hue与支持ssl的oozie服务器连接,但面临以下SSL问题。
Error submitting workflow Batch job for query-pig: ("bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)",)
从oozie服务器计算机创建CA证书并使用hue服务器对其进行配置。
我可以使用curl命令从我生成的证书的帮助下从oozie服务器获取状态信息。但是只有在从hue服务器进行通信时才会出现问题。
还在oozie-site.xml属性中添加了代理用户。
hue.ini
[liboozie] # The URL where the Oozie service runs on. This is required in order for # users to submit jobs. Empty value disables the config check. oozie_url=https://Fully Qualified Host name:11443/oozie # Requires FQDN in oozie_url if enabled security_enabled=true use_libpath_for_jars=false # Location on HDFS where the workflows/coordinator are deployed when submitted. remote_deployement_dir=/user/hue/oozie/deployments ssl_cert_ca_verify=true
我不知道从curl和hue服务器连接时有什么区别,因为curl对我来说非常适合,而hue服务器没有。