Member since
07-09-2019
360
Posts
97
Kudos Received
56
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
640 | 08-26-2024 08:17 AM | |
1095 | 08-20-2024 08:17 PM | |
404 | 07-08-2024 04:45 AM | |
501 | 07-01-2024 05:27 AM | |
437 | 06-05-2024 06:25 AM |
01-18-2021
08:50 AM
Solved. Thank you
... 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
12-21-2020
04:34 AM
@bvishal it is expected that you get above error if you do not auth for the browser. You have two options: Either you can disable the spnego authentication or enable spnego authentication you can disable SPNEGO auth by setting below properties in Advanced core-site: hadoop.http.authentication.simple.anonymous.allowed = true
hadoop.http.authentication.type = simple To enable spnego authentication follow below article https://community.cloudera.com/t5/Community-Articles/User-authentication-from-Windows-Workstation-to-HDP-Realm/ta-p/245957
... View more
12-14-2020
08:22 PM
@ASIF123 Can you share the stack trace of the error and also share the commands you used to delete the notebook
... View more
11-20-2020
05:07 PM
@Koffi you can increase in spark conf as well
... View more
10-26-2020
02:36 AM
@aaaaad Can you change the ownership of /tmp/hive directory to hive: hive
... View more
10-23-2020
05:37 AM
@BalrogBait Installing interpreter is failing as it is unable to connect to the internet Follow the below steps to install an interpreter - Downloaded the jars from the below link by selecting the correct zeppelin version : https://mvnrepository.com/artifact/org.apache.zeppelin/zeppelin-python - Create the directory structure and copy the required jars to the location: # mkdir -p /usr/hdp/current/zeppelin-server/interpreter/python #cd /usr/hdp/current/zeppelin-server/interpreter/python - Copy the downloaded jar files to /usr/hdp/current/zeppelin-server/interpreter/python and set the permissions #chown zeppelin:hadoop -R /usr/hdp/current/zeppelin-server/interpreter/python - Restarted zeppelin and then create Python interpreter from the available interpreter groups
... View more
10-14-2020
08:48 AM
now I want to add the component as HBASE master and RegionServers and Phoenix Query Servers
... View more