Member since
07-09-2019
422
Posts
97
Kudos Received
58
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1241 | 07-06-2025 05:24 AM | |
| 1147 | 05-28-2025 10:35 AM | |
| 3175 | 08-26-2024 08:17 AM | |
| 4018 | 08-20-2024 08:17 PM | |
| 1729 | 07-08-2024 04:45 AM |
03-17-2021
08:35 AM
@PrernaU From the stack trace I can see you are using livy interpreter, Can you check is the livy url is set correctly in interpreter settings
... View more
03-07-2021
09:33 PM
2 Kudos
@bvishal given properties will disable authentication for webui's and it will allow anonymous users to access the web UI's of hdfs, yarn, and mapreduce.
... View more
03-07-2021
09:08 PM
3 Kudos
In HDP 3.x Spenego authentication will be enabled by default when you enable Kerberos To access the UI you need to either configure Spnego auth in the browser OR disable spnego auth by setting the below properties in Hdfs =>Advanced core-site hadoop.http.authentication.simple.anonymous.allowed = true
hadoop.http.authentication.type = simple
... View more
01-20-2021
07:31 AM
1 Kudo
@Harish-hadoop try setting log_bin_trust_function_creators = 1 by using the below command in ranger db and retry installing the ranger service # SET GLOBAL log_bin_trust_function_creators = 1
... View more
01-15-2021
10:40 AM
@Christy09 You can use the below API to delete/ remove clients # curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/<SERVICE NAME> Example: # curl -u admin:<Password> -H "X-Requested-By: ambari" -X DELETE http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/YARN_CLIENT
... View more
01-14-2021
08:13 PM
@Christy09 Use the below API to put a node/host in maintenance mode curl -u <Username>:<Password> -H 'X-Requested-By:ambari' -i -X PUT -d '{"RequestInfo":{"context":"Turn On Maintenance Mode for host","query":"Hosts/host_name.in(<HOST_NAME>)"},"Body":{"Hosts":{"maintenance_state":"ON"}}}' http://<AMBARI_HOST>:8080/api/v1/clusters/<CLUSTER_NAME>/hosts Example: curl -u admin:<PASSWORD> -H 'X-Requested-By:ambari' -i -X PUT -d '{"RequestInfo":{"context":"Turn On Maintenance Mode for host","query":"Hosts/host_name.in(c486-node2.coelab.cloudera.com)"},"Body":{"Hosts":{"maintenance_state":"ON"}}}' http://c486-node1.coelab.cloudera.com:8080/api/v1/clusters/c486/hosts
... View more
01-10-2021
10:27 PM
@SurajP Can you check is hive-site.xml is copied to /etc/spark/conf/ if not please copy hive-site.xml to spark conf directory Also Can you try running "show databases" command to check is all the databases are listing
... View more
10-01-2020
12:17 AM
@vijaypabothu Click on "-" symbol to remove the property and you need to add the user as shown in the below format <user>=<password> Example admin = admin
... View more
09-30-2020
08:13 AM
1 Kudo
@vijaypabothu In CDP by default Pam authentication will be enabled You need to delete pam related properties and add the user in "zeppelin.shiro.user.block" property under zeppelin configs 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.
... View more
09-22-2020
06:07 AM
@lucky_day Can you try disabling and re-enabling the hive plugin (It requires a restart of Hive service)
... View more