Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2509 | 04-27-2020 03:48 AM | |
| 4975 | 04-26-2020 06:18 PM | |
| 4056 | 04-26-2020 06:05 PM | |
| 3288 | 04-13-2020 08:53 PM | |
| 5015 | 03-31-2020 02:10 AM |
01-05-2018
03:11 PM
@Jay Kumar SenSharma Regarding reinstalling HBase service. How can I remove the HBase Service from Ambari UI? and How can I reinstall it surely ? Thanks
... View more
01-15-2018
09:17 PM
@Matt, Hope you were successful in copying your files to HDFS. For any other "Getting Started Questions" you might have please check out the Learning the Ropes Hortonworks Tutorial.
... View more
01-08-2018
07:49 AM
@Mahendra Hegde Good to know that you are now able to connect to remote server hosted HDFS using provided hdfs-site.xml ...etc files. However your latest query is bit extended, and it will be great if you ask that query as part of a new HCC Thread. It helps us in maintaining the HCC well when one thread has a dedicated query with a dedicated answer, else multiple issues in a single thread might sometimes confuses some HCC users to quickly find the answer. . As the issue which is originally mentioned in this HCC Thread is resolved, hence it will be also great if you can mark this HCC thread as Answered by clicking on the "Accept" Button on the correct answer. That way other HCC users can quickly find the solution when they encounter the same issue.
... View more
12-20-2017
02:54 PM
tnx: missed to match the name to the flag.
... View more
12-11-2017
04:58 AM
@Abhijit Nayak As given by @Jay Kumar SenSharma the JIRA ( https://issues.apache.org/jira/browse/AMBARI-19666 ) was a bug in Ambari 2.4.0, but your Ambari version is 2.5.0.3 which is fixed in this release as per the JIRA, please check the below as given by @Jay Kumar SenSharma Also it might be a browser setting which might be interrupting the complete file download in between. So please try using a different browser to see if the behaviour is persistent?
... View more
12-06-2017
01:09 PM
@Michael Bronson Yes, we can change the default ZK port 2181 to something else for all the hosts. That will also be a easily managable option.
... View more
12-05-2017
07:32 PM
@Michael Bronson In your first update the Hostname was not complete for ambari host. (Is that a typo "master02.dddns.com" or it should be "master02" ) curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http://master02.dddns.com:8080/api/v1/clusters/HDP/hosts/worker04.dddns.com/host_components/METRICS_MONITOR . Also the hostname of worker is different "worker04.dddns.com" (or it should be "worker04.sys45.com") Are you sure that your host "worker04.dddns.com" really has AMS monitor installed to it? Please confirm the same using GET command to see if MONITOR is listed int eh output of the following API call? curl -u admin:admin -H "X-Requested-By: ambari" -X GET http://master02.dddns.com:8080/api/v1/clusters/HDP/hosts/worker04.dddns.com/host_components
... View more
12-05-2017
08:21 PM
1 Kudo
@Michael Bronson You can try the following approach to completely remove the unwanted host from your ambari Database. 0. Stop ambari-server. # ambari-server stop 1. Please take a fresh ambari DB dump for safety and backup. 2. Now run the following SQL queries inside your ambari DB to delete the unwanted host. Please replace the "unwanted1.host.com" with your unwanted hostname and similarly the "351" with the "host_id" that you want to remove from your Database. delete from execution_command where task_id in (select task_id from host_role_command where host_id in (351));
delete from host_version where host_id in (351);
delete from host_role_command where host_id in (351);
delete from serviceconfighosts where host_id in (351);
delete from hoststate where host_id in (351);
delete from kerberos_principal_host WHERE host_id='unwanted1.host.com'; ----> For kerberized Env
delete from hosts where host_name in ('unwanted1.host.com');
delete from alert_current where history_id in ( select alert_id from alert_history where host_name in ('unwanted1.host.com')); 3. Now restart ambari-server. # ambari-server start .
... View more
12-06-2017
10:04 AM
@Michael Bronson Brief of edits_inprogress__start transaction ID– This
is the current edit log in progress. All transactions starting fromare
in this file, and all new incoming transactions will get appended to
this file. HDFS pre-allocates space in this file in 1 MB chunks for
efficiency, and then fills it with incoming transactions. You’ll
probably see this file’s size as a multiple of 1 MB. When HDFS finalizes
the log segment, it truncates the unused portion of the space that
doesn’t contain any transactions, so the finalized file’s space will
shrink down. . More details about these files and it's functionality can be found at: https://hortonworks.com/blog/hdfs-metadata-directories-explained/
... View more
12-06-2017
05:22 AM
I have checked all the services that has to be enabled/disabled but still unable to proceed in Ambari installation wizard. Yum local repository is working, Also tried with only one node I am confused on where i am going wrong as i have been installing this for the past 2-3 weeks.
... View more