<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to reset Ambari Admin password? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/297910#M7774</link>
    <description>&lt;P&gt;Our installation had the password hash in another table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;update ambari.user_authentication set authentication_key='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' where user_id='1'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: user_id=1 was the admin in my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jun 2020 20:27:50 GMT</pubDate>
    <dc:creator>Peter118</dc:creator>
    <dc:date>2020-06-11T20:27:50Z</dc:date>
    <item>
      <title>How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94510#M7762</link>
      <description>&lt;P&gt;I have forgot Ambari Admin password after I had changed it from default, not able to login to Ambari UI now. Please suggest.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 17:41:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94510#M7762</guid>
      <dc:creator>pardeep_kumar</dc:creator>
      <dc:date>2015-09-29T17:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94511#M7763</link>
      <description>&lt;P&gt;You need to log into the database for example Postgres:&lt;/P&gt;&lt;P&gt;1. Log on to ambari server host shell &lt;/P&gt;&lt;P&gt;
2. Run 'psql -U ambari-server ambari'&lt;/P&gt;&lt;P&gt; 
3. Enter password 'bigdata' &lt;/P&gt;&lt;P&gt;
4. In psql: &lt;/P&gt;&lt;P&gt;
update ambari.users set user_password='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' where user_name='admin' &lt;/P&gt;&lt;P&gt;
5. Quit psql &lt;/P&gt;&lt;P&gt;
6. Run 'ambari-server restart' &lt;/P&gt;&lt;P&gt;This will reset the admin account back to the password of 'admin'&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2015 17:47:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94511#M7763</guid>
      <dc:creator>dgoodhand</dc:creator>
      <dc:date>2015-09-29T17:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94512#M7764</link>
      <description>&lt;P&gt;@pardeep.kumar@hortonworks.com&lt;/P&gt;&lt;P&gt;1) Postgres - As mentioned earlier&lt;/P&gt;&lt;P&gt;2) Mysql&lt;/P&gt;&lt;P&gt;Login as root user  mysql -u root -p ( press enter, it will ask for password)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;use mysql;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET PASSWORD FOR 'admin'@'localhost'= PASSWORD('admin'); &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OR &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE mysql.user SET Password=PASSWORD('admin') WHERE User='admin' AND Host='localhost'; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;localhost can be FQDN based on mysql setup
&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3) Oracle&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Login as sys or system user&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlplus sys as sysdba&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;alter user admin identified by 'admin';&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:06:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94512#M7764</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2015-10-06T20:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94513#M7765</link>
      <description>&lt;P&gt;Most customers actually have user ambari for the database, so it would actually be:&lt;/P&gt;&lt;P&gt;2.  Run 'psql -U ambari ambari'&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 00:33:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94513#M7765</guid>
      <dc:creator>orlandoteixeira</dc:creator>
      <dc:date>2016-02-27T00:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94514#M7766</link>
      <description>&lt;P&gt;Password in #3 above is stored in /etc/ambari-server/conf/password.dat&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 07:42:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94514#M7766</guid>
      <dc:creator>wgonzalez</dc:creator>
      <dc:date>2016-06-25T07:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94515#M7767</link>
      <description>&lt;P&gt;An easier way, just run command bellow from linux terminal in ambari server host:&lt;/P&gt;&lt;P&gt;ambari-admin-password-reset&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2016 20:19:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94515#M7767</guid>
      <dc:creator>gbraccialli3</dc:creator>
      <dc:date>2016-07-05T20:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94516#M7768</link>
      <description>&lt;P&gt;Guilhemme,&lt;/P&gt;&lt;P&gt;Could you please do a :&lt;/P&gt;&lt;P&gt;yum whatprovides 'ambari-admin-password-reset'&lt;/P&gt;&lt;P&gt;I just checked my 2.2.2 install and I do not see it:&lt;/P&gt;&lt;P&gt;[root@mon-orlan ~]# ambari (hit tab to complete)&lt;/P&gt;&lt;P&gt; ambari-python-wrap ambari-server ambari_server_main.py ambari-server.py&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2016 20:31:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94516#M7768</guid>
      <dc:creator>orlandoteixeira</dc:creator>
      <dc:date>2016-07-05T20:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94517#M7769</link>
      <description>&lt;P&gt;Orlando, you need to make sure agent is running and then you can execute the command, you won't see this script on the FS but once agent is up you may execute the command.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Jul 2016 19:38:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94517#M7769</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-07-10T19:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94518#M7770</link>
      <description>&lt;P&gt;Artem, can you tell me how or where the ambari-admin-password-reset command is located.  I'm guessing it's an alias, but it's not set in root on the ambari server.  So where is it defined since you're saying it's not a file of some sort.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 05:45:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94518#M7770</guid>
      <dc:creator>jeff_watson</dc:creator>
      <dc:date>2017-08-08T05:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94519#M7771</link>
      <description>&lt;P&gt;Just to contribute with alternative options for such case: my HDP sandbox had been used since beginning of HDP tutorial, i figure some configs were spoiled at the point that needed agentes and services went down. To stop running out of time, I just downloaded/imported a new Virtualbox HDP sandbox - since that, i could get back on track - i.e. Interact with sandbox following tutorial instructions ("HDP &amp;gt; develop with hadoop &amp;gt; Hello World", "6. Interactive SQL on Hadoop with Hive LLAP ", "Enable Ambari Admin Login" , &lt;A href="https://br.hortonworks.com/tutorial/learning-the-ropes-of-the-hortonworks-sandbox/#section3" target="_blank"&gt;https://br.hortonworks.com/tutorial/learning-the-ropes-of-the-hortonworks-sandbox/#section3&lt;/A&gt; , '2.2 Setup Ambari admin Password Manually' ) - it has gone fine.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2017 21:24:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94519#M7771</guid>
      <dc:creator>masahiro_hirama</dc:creator>
      <dc:date>2017-08-29T21:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94520#M7772</link>
      <description>&lt;P&gt;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 &lt;A href="https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html "&gt;&lt;/A&gt;link : &lt;A href="https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html" target="_blank"&gt;https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Sep 2018 20:29:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94520#M7772</guid>
      <dc:creator>akhilsnaik</dc:creator>
      <dc:date>2018-09-03T20:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94521#M7773</link>
      <description>&lt;P&gt;The best answer is not up to date. From Ambari-2.7.0  this works (as commented by &lt;A rel="user" href="https://community.cloudera.com/users/18735/asnaik.html" nodeid="18735"&gt;@Akhil S Naik&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;A href="https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html"&gt;https://community.hortonworks.com/articles/217295/ambari-270-how-to-reset-ambari-admin-password-from.html&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Sat, 01 Dec 2018 07:22:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/94521#M7773</guid>
      <dc:creator>DennisJaheruddi</dc:creator>
      <dc:date>2018-12-01T07:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Ambari Admin password?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/297910#M7774</link>
      <description>&lt;P&gt;Our installation had the password hash in another table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;update ambari.user_authentication set authentication_key='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' where user_id='1'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: user_id=1 was the admin in my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 20:27:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-reset-Ambari-Admin-password/m-p/297910#M7774</guid>
      <dc:creator>Peter118</dc:creator>
      <dc:date>2020-06-11T20:27:50Z</dc:date>
    </item>
  </channel>
</rss>

