01-10-2018 09:30 AM
Hi there,
I would like to change the Hue load balancer port in my Cloudera Director script.
What should I write ?
(I want the equivalent of this : )
Thank you in advance !
01-26-2018 11:56 AM
Always use the configuration API name with Cloudera Director.
See https://www.cloudera.com/documentation/enterprise/properties/5-14-x/topics/cm_props_cdh5140_hue.html... for the API names.
This is a Role config (not service-wide) so the config must be placed in each instance group that contains a hue load balancer role.
e.g.,
cluster {
configs {
# service-wide configs are placed at the cluster level
} instance-group-name { roles { HUE: [HUE_LOAD_BALANCER] } configs {
# role configs are placed in the instance groups HUE { HUE_LOAD_BALANCER { listen: 8889 } } } }
09-10-2018 10:34 AM
Sorry for my late reply.
This helped me a lot !
Thank you very much !