Member since
10-06-2023
5
Posts
1
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1844 | 11-27-2023 12:28 AM | |
821 | 10-09-2023 03:56 AM |
11-03-2023
01:09 AM
Hi everybody. When I use https://github.com/cloudera/hue/blob/master/tools/ops/hue_sync_ldap_groups_cron.sh to sync ldap groups with hue on my first cluster it's works fine but when I use on a second cluster I have one error "LD_LIBRARY_PATH can't be found, if you are using ORACLE for your Hue database then it must be set, if not, you can ignore export LD_LIBRARY_PATH=/path/to/instantclient". Cause this error, we can't retreive de ldap_config used later in the scripts. Does someone know how to fix this issue. Thanks 😉
... View more
Labels:
- Labels:
-
Cloudera Hue
10-09-2023
03:56 AM
1 Kudo
I found the problem, it s needed to use --cm managed
... View more
10-06-2023
02:28 AM
When a try this script, i have this error raise Exception('No LDAP URL was specified') on hue/apps/useradmin/src/useradmin/ldap_access.py at master · cloudera/hue · GitHub . So i decided to read the following lines : ldap_url = ldap_config.LDAP_URL.get() username = ldap_config.BIND_DN.get() password = desktop.conf.get_ldap_bind_password(ldap_config) ldap_cert = ldap_config.LDAP_CERT.get() search_bind_authentication = ldap_config.SEARCH_BIND_AUTHENTICATION.get() if ldap_url is None: raise Exception('No LDAP URL was specified') Its means that ldap_url is None, so i tried to prind ldap_config and i have : "<class 'desktop.lib.conf.BoundContainerWithGetAttr'>(config=<desktop.lib.conf.ConfigSection object at 0x7f5b80fb0250>, bind_to={'auth': {'jwt': {}}, 'database': {}, 'query_database': {}, 'task_server': {}, 'session': {}, 'knox': {}, 'smtp': {}, 'websockets': {}, 'raz': {}, 'ozone': {}, 'kerberos': {}, 'tracing': {}, 'metrics': {}, 'slack': {}, 'analytics': {}, 'ldap': {}}, grab_key='ldap')" How can i resolve this problem
... View more
Labels:
- Labels:
-
Cloudera Hue