1. SSH into your Ops Manager VM
2. Change into the tempest-web use
sudo su tempest-web
3. Connect to the Ops Manager Postgres Database
/usr/local/bin/psql tempest_production
4. Check value of Hostname field in table uaa_configs
tempest_production=# select hostname from uaa_configs;
5. Update record for Hostname in table uaa_configs
tempest_production=# start transaction;
update uaa_configs set hostname='XX.XX.217.242';
commit;
6. Exit Postgres Database
7. Exit tempest-web user
8. Restart tempest-web service
sudo service tempest-web restart