- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Questions about how to configurate Hue Configuring TLS/SSL for Impala
- Labels:
-
Apache Impala
-
Cloudera Hue
Created on ‎11-15-2020 05:48 PM - edited ‎11-15-2020 05:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Questions about how to configurate Hue Configuring TLS/SSL for Impala
[impala]
# Port of the Impala Server
## server_port=21050
# URL of the Impala Coordinator Server.
## coordinator_url=localhost:25000
[[ssl]]
# SSL communication enabled for this server.
## enabled=false
# Path to Certificate Authority certificates.
## cacerts=/etc/hue/cacerts.pem
# Choose whether Hue should validate certificates received from the server.
## validate=true
Do Imapala TLS/SSL settings in Hue apply to both 21050 and 25000 communications?
Impala in my cluster, Only 'SSL/TLS Certificate for Impala component Webserver' is configured.
https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/impala_ssl.html#concept_gnk_2tt_qp
Port 25000 uses SSL.
Port 21050 does not use SSL.
Would the connection to port 21050 fail If I set ssl for Imapala in hue.
When I click impala query profile, Hue raise error.
I am finding the solution.
bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)"
Created ‎11-23-2020 10:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@avengers Yes, only SSL port will work for SSL connection that's expected. So first rectify the ports and then see if the error comes again.
Then testing the SSL connection using below or some similar command will help you to determine the issue.
openssl s_client -verify 100 -showcerts -CAfile /etc/tls-certs/certificate.pem -connect <Impalahost>:25000
Cheers!
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.
