- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
[AMBARI 2.7.4] Change Postgres Ambari database default password
Created on 05-03-2022 12:06 PM - last edited on 05-04-2022 07:06 AM by ask_bill_brooks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi all, i saw this guide: https://community.cloudera.com/t5/Support-Questions/how-to-change-password-for-ambari-db-post-instal...
but it was for Ambari 2.2.0 and i was wondering if do you think is the same for Ambari 2.7.4.
I have in ambari.properties:
- server.jdbc.user.passwd=/etc/ambari-server/conf/password.dat
Doing "cat /etc/ambari-server/conf/password.dat " i see the default password (bigdata) in plain, so NO PASSWORD ENCRYPTION ENABLED.
I'm using Postgres 9.3
Thanks!!
Created 05-03-2022 01:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As described in the link that i posted above, those steps works perfectly:
P.S. i stopped ambari-server before doing those
$ grep "password" /etc/ambari-server/conf/ambari.properties server.jdbc.user.passwd=/etc/ambari-server/conf/password.dat $ echo "bigdata_custom" > /etc/ambari-server/conf/password.dat $ sudo -u postgres psql postgres=# ALTER USER ambari WITH PASSWORD 'bigdata_custom'; postgres=# \q $ ambari-server restart
Created 05-03-2022 01:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As described in the link that i posted above, those steps works perfectly:
P.S. i stopped ambari-server before doing those
$ grep "password" /etc/ambari-server/conf/ambari.properties server.jdbc.user.passwd=/etc/ambari-server/conf/password.dat $ echo "bigdata_custom" > /etc/ambari-server/conf/password.dat $ sudo -u postgres psql postgres=# ALTER USER ambari WITH PASSWORD 'bigdata_custom'; postgres=# \q $ ambari-server restart