Member since
07-30-2019
453
Posts
112
Kudos Received
80
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2398 | 04-12-2023 08:58 PM | |
| 4970 | 04-04-2023 11:48 PM | |
| 1590 | 04-02-2023 10:24 PM | |
| 3486 | 07-05-2019 08:38 AM | |
| 3400 | 05-13-2019 06:21 AM |
09-05-2018
03:30 PM
Hi @Michael Bronson, Can you please refer to @Sandeep Nemuri's blog of : https://community.hortonworks.com/content/supportkb/150095/how-to-enable-debug-logging-for-spark-history-serv.html and see if that helps you
... View more
09-05-2018
03:23 PM
1 Kudo
Hi @Takefumi Oide , Unfortunately ambari will only trigger the rebalance process and Ambari-server will no longer track the balancer process once the operation is triggered . Here is the Jira due to which ambari -server stopped tracking rebalancer process : https://issues.apache.org/jira/browse/AMBARI-20175 Please accept the answer if it helped you.
... View more
09-03-2018
01:29 PM
For Users who are trying to Access this same thread for Ambari-2.7.0 and above, this commented method no longer works and you might need to refer to this link : https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html
... View more
09-03-2018
01:26 PM
8 Kudos
This Article is intended to Ambari Administrators who will be managing ambari . And for the steps mentioned below, you need access to ambari Server and ambari database. For Ambari versions below ambari-2.6.2.2 refer to comments here : https://community.hortonworks.com/questions/449/how-to-reset-ambari-admin-password.html This article is for Ambari-2.7.0.0 and above. Problem Statement: you have changed the password of the admin user in UI and now you forgot the password. you want to reset the admin password. Steps 1) Stop ambari server ambari-server stop 2) login to your database (default password will be bigdata) psql -U ambari ambari or ( for mysql) mysql -U ambari -D ambari 3) execute the command : update user_authentication set authentication_key='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' where user_id in (select user_id from users where user_name='admin'); 4) exit the database and restart ambari-server ambari-server start Now password is reset to default one(ie admin) and you can login to ambari-server using admin/admin . Hope this helps.
... View more
Labels:
08-31-2018
04:58 PM
Hi @lam rab , By the error it looks like zookeeper is having some issue and its not able to connect to zookeeper. If the AMS metrics history data is not important for you and you need to make the service up. can you try performing : https://cwiki.apache.org/confluence/display/AMBARI/Cleaning+up+Ambari+Metrics+System+Data
Remove the AMS zookeeper data by backing up and removing the contents of 'hbase.tmp.dir'/zookeeper
and see if this helps ? Also Please make sure AMS Heap configurations are good : https://docs.hortonworks.com/HDPDocuments/Ambari-2.6.2.0/bk_ambari-operations/content/ams_general_guidelines.html Please accept my answer if you found this helpful.
... View more
08-31-2018
01:37 PM
Hi @Mahesh Chaudhary,
i think these is the document you are searching for : https://hortonworks.com/tutorial/learning-the-ropes-of-the-hortonworks-sandbox/#terminal-access
You can explore more on this help guide : https://hortonworks.com/tutorial/learning-the-ropes-of-the-hortonworks-sandbox
Please accept the answer if this helped
... View more
08-31-2018
10:37 AM
Hi @lam rab , were you able to resolve the issue. i see the exception you posted happens mostly due to upgrade only.. If not please attach ambari-metrics collector logs .
... View more
08-31-2018
05:12 AM
3 Kudos
Apache Ambari is a tool for provisioning, managing, and monitoring Apache Hadoop clusters. Ambari provides central management for starting, stopping, and reconfiguring Hadoop services across the entire cluster. Ambari-server Sends Commands to Ambari-agent for such operations in JSON format which is saved in /var/lib/ambari-agent/data folder. these json (command-*.json, status_command.json) Files may contain usernames and passwords which is required for few services at startup Currently the command JSON files are stored on disk in /var/lib/ambari-agent/data. These files may be cleared out over time, but there is a need to have them removed as soon as they are no longer needed. Ambari-2.7.0 Provides a provision for deleting the command JSON files once Operation is successful to reduce the risk of leaking sensitive data stored at plaintext in the command JSON files. More Details about this can be found at the Apache JIRA: https://issues.apache.org/jira/browse/AMBARI-24228 How To Enable this feature in Ambari-agent Steps ******* Stop Ambari-agent ambari-agent stop 2. edit the file located at /etc/ambari-agent/conf/ambari-agent.ini [root@akhiln conf]# vi /etc/ambari-agent/conf/ambari-agent.ini 3. Add below line under [agent] heading and save the file command_file_retention_policy=remove 4. Start ambari agent ambari-agent start Note : Possible Options for this tag are:
keep
No automatic removal is performed This is the default behavior remove
The command JSON file are remove as soon as the command completes remove_on_success
The command JSON files are remove as soon as the command successfully completes The command JSON files are not removed on failure conditions Please Note this feature is as of now available from Ambari-2.7.0 if you need to backport this feature to your version and you are under hortonworks subscription please contact hortonworks support.
... View more
Labels:
08-31-2018
02:58 AM
Hi @Michael north, Not sure if its same,are you hitting : https://issues.apache.org/jira/browse/AMBARI-23943 have you configured ViewFS ? : https://docs.hortonworks.com/HDPDocuments/Ambari-2.7.0.0/managing-and-monitoring-ambari/content/amb_configure_viewfs.html
... View more
08-31-2018
02:13 AM
Hi @Zyann , Heartbeat lost means ambari-agent is not connected to ambari-server. can you see the status of ambari-agent on the problamatic host using the command : [root@aanaik1 ~]# ambari-agent status
Found ambari-agent PID: 3516
ambari-agent running. If its not running you can start it.if its running, please see in [root@aanaik1 ~]# tail -f /var/log/ambari-agent/ambari-agent.log whether its able to send heartbeat to ambari-server or not. Hope this helps you
... View more