Member since
01-19-2017
3676
Posts
632
Kudos Received
372
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 606 | 06-04-2025 11:36 PM | |
| 1152 | 03-23-2025 05:23 AM | |
| 573 | 03-17-2025 10:18 AM | |
| 2169 | 03-05-2025 01:34 PM | |
| 1365 | 03-03-2025 01:09 PM |
08-10-2017
12:37 PM
@Narasimha K How long have you bee receiving the alerts? Please try to clear the alert be deactivating and activating see attached screenshot
... View more
08-10-2017
11:15 AM
@Shrikant BM Nagios and Ganglia has been deprecated. It's not supported from HDP 2.3 and so no hortonworks support on these components ,AMS is a better solution
... View more
08-10-2017
10:20 AM
@John Wright I think your repos is wrong. I just tried downloading on the hdp repo for RHEL/CentOS/Oracle LINUX 7 Here is what I did, note please backup your /etc/yum.repos.d/hdp.repo before overwriting with the below code. wget -nv http://public-repo-1.hortonworks.com/HDP/centos7/2.x/updates/2.6.0.3/hdp.repo -O /etc/yum.repos.d/hdp.repo In the above I assume you are running one of the above flavors of Linux #VERSION_NUMBER=2.6.0.3-8
[HDP-2.6.0.3]
name=HDP Version - HDP-2.6.0.3
baseurl=http://public-repo-1.hortonworks.com/HDP/centos7/2.x/updates/2.6.0.3
gpgcheck=1
gpgkey=http://public-repo-1.hortonworks.com/HDP/centos7/2.x/updates/2.6.0.3/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1
[HDP-UTILS-1.1.0.21]
name=HDP-UTILS Version - HDP-UTILS-1.1.0.21
baseurl=http://public-repo-1.hortonworks.com/HDP-UTILS-1.1.0.21/repos/centos7
gpgcheck=1
gpgkey=http://public-repo-1.hortonworks.com/HDP/centos7/2.x/updates/2.6.0.3/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1 Then do cat /etc/yum.repos.d/hdp.repo After validating the contents then run the below yum clean all
yum repolist You should see the good repo contents , now you can continue to delpoy your cluster sucessfully
... View more
08-10-2017
09:27 AM
@uri ben-ari @Jay SenSharma This thread have been going on endlessly, and with duplicates.. I provided you the curl step mentioned above. If an answer provided solved the initial issue please do raise another thread. As jay stated you should mark the appropriate answer as "ACCEPTED" otherwise members will not attend to your questions in the future ,personally I have posted about 4 answers to your same thread .....
... View more
08-10-2017
09:06 AM
@koteswararao kasarla Have a lot at this document it shows you how-to
... View more
08-10-2017
07:53 AM
1 Kudo
@Vishal Gupta
Unfortunately the only proper method is going through the Ambari UI. Make sure you have the KDC credential and ensure the KDc server is accessible and running. Log in to Ambari Web and Browse to Admin > Kerberos. Click Disable Kerberos to launch the wizard. Complete the wizard. Restart all the HDP components Official doc Hope that helps
... View more
08-10-2017
07:37 AM
@Anurag Mishra First
check the value of `zookeeper.znode.parent` in HBase. Set it to the same value in Ambari, Kill all the metrics
processes running on the node. `ps -ef | grep
metrics` and kill all of them as they were caching the `/hbase` value. Watch
the ambari metrics collector logs (
/var/log/ambari-metrics-collector/ambari-metrics-collector.log) while you do
the below steps Steps: 0. tail -f
/var/log/ambari-metrics-collector/ambari-metrics-collector.log 1.
Stop Ambari 2.
Kill all the metrics processes 3.
curl --user admin:admin -i -H "X-Requested-By: ambari" -X DELETE
http://`hostname -f`:8080/api/v1/clusters/CLUSTERNAME/services/AMBARI_METRICS =>
Make sure you replace CLUSTERNAME with your cluster name 4.
Refresh Ambari UI 5.
Add Service 6.
Select Ambari Metrics 7.
In the configuration screen, make sure to set the value of
`zookeeper.znode.parent` to what is configured in the HBase service. By default
in Ambari Metrics it is set to empty value. 8.
Deploy In embedded mode then hbase.cluster.distributed should be
false, and hbase.rootdir set to a local directory using the "file://"
scheme.
... View more
08-09-2017
09:14 PM
@uri ben-ari You are opening many threads for the same issue be reminded this is unproductive https://community.hortonworks.com/questions/118414/ambari-change-the-parameters-of-the-ambari-service.html?childToView=118423#comment-118423 Members take their valuable time to answer and once your problem has been resolved ,you need to accept the best answer hence rewarding the user. Reward the user with th best answer and close the thread
... View more
08-09-2017
08:42 PM
@John Wright Looking at your HDP.repo I see 2 different URL's one is private and the other is the official public is that a coincidence? baseurl=http://private-repo-1.hortonworks.com/HDP/centos7-ppc/2.x/updates/2.6.0.0-598
baseurl=http://public-repo-1.hortonworks.com/HDP-UTILS-1.1.0.21/repos/ppc64le Please correct that with the hortonworks publc repos and run the below commands yum clean all
yum repolist Hope that works
... View more