Stop the original Ambari Server.
ambari-server stop
Create a directory to hold the database backups.
cd /tmp mkdir dbdumps cd dbdumps/
Create the database backups.
pg_dump -U $AMBARI-SERVER-USERNAME ambari > ambari.sql Password: $AMBARI-SERVER-PASSWORD pg_dump -U $MAPRED-USERNAME ambarirca > ambarirca.sql Password: $MAPRED-PASSWORD
Substitute the usernames and passwords you created when you installed Ambari. The default values are
ambari-server/bigdata
andmapred/mapred
.