Member since
02-08-2016
793
Posts
669
Kudos Received
85
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3141 | 06-30-2017 05:30 PM | |
| 4099 | 06-30-2017 02:57 PM | |
| 3404 | 05-30-2017 07:00 AM | |
| 3983 | 01-20-2017 10:18 AM | |
| 8628 | 01-11-2017 02:11 PM |
11-09-2016
02:40 PM
Great. It worked .. Cheers
... View more
11-09-2016
09:15 AM
@Jose Molero
Was the test connection successful in Ambari UI for KDC ? Also can you make sure you have correct file in place for /etc/krb5.conf
... View more
11-08-2016
07:20 PM
Please do check Ranger-HDFS repository policy also for hdfs user in Ranger webui.
... View more
11-08-2016
07:20 PM
@Sadek M Did you created encrypted zone as per doc below - hdfs dfs -mkdir /zone_encr http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.0/bk_hdfs_admin_tools/content/config-use-hdfs-encr.html Can you paste output of below command - $hadoop key list -metadata
$hdfs crypto -listZones
$hdfs dfs -ls -R /enc_zone2
I suspect the sub-directory structure is not created hence its giving error.
... View more
11-08-2016
07:08 PM
2 Kudos
1. Lets assume you have HDP cluster installed and managed by Ambari. 2. When we want to delete a service [either Custom service or HDP service] using api, you generally use below command - curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://<ambari-server>:8080/api/v1/clusters/c1/services/<SERVICENAME>; 2. After executing above command you might see below error - $curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://<ambari-server>:8080/api/v1/clusters/c1/services/HBASE
{ "status" : 500, "message" : "org.apache.ambari.server.controller.spi.SystemException: An internal system exception occurred: Cannot remove HBASE. Desired state STARTED is not removable. Service must be stopped or disabled." 3. If you see the above error while Removing/Stopping service please use below steps to resolve the issue 4. Login to ambari database [In my case its postgresql] and check the values of the service in below tables - # psql -U ambari
[Default password is 'bigdata']
ambari=> select * from servicedesiredstate where service_name='HBASE';
ambari=> select * from servicecomponentdesiredstate where service_name='HBASE';
5. Make sure here in above output the value of column 'desired_state' should be INSTALLED 6. If you see the above value of "desired_state" is set to STARTED then update the column and set it to STARTED using below command - ambari=> update servicedesiredstate set desired_state='INSTALLED' where service_name='HBASE';
7. Follow same steps for "servicecomponentdesiredstate" table - ambari=> update servicecomponentdesiredstate set desired_state='INSTALLED' where service_name='HBASE'; 8. Now try removing/deleting the service now. It should work. $curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://<ambari-server>:8080/api/v1/clusters/c1/services/HBASE
... View more
Labels:
11-08-2016
06:31 PM
@Roger Young Can you please let me know the step by step process you trying to add a node to the existing ambari-server ?
... View more
11-08-2016
06:12 PM
@Adi Jabkowsky Can you please check once the property value set in configs as per - https://docs.hortonworks.com/HDPDocuments/Ambari-2.2.0.0/bk_Ambari_Security_Guide/content/setting_up_hadoop_group_mappping_for_ldap_ad.html Also if possible please attach ranger ugsync logs.
... View more
11-01-2016
12:39 PM
1 Kudo
I need to know what exactly provides the encryption for ranger KMS. Is it's FIPS 140-2 compliant ?
... View more
Labels:
- Labels:
-
Apache Ranger
10-31-2016
02:34 PM
@Klaus Lucas There seems to be 2 issues - 1. Repo issue 2. Space issue You can follow below steps for resolution - Copy the /etc/yum.repos.d/ambari.repo from ambari server node to agent node. Before that you need to free some space so that the package must be installed on the root filesystem.
... View more
10-24-2016
08:21 PM
@James Benson Can you try to restart ambari server $ambari-server restart and check if the add service tab is back in place?
... View more