Many of us might have encountered this situation where Cloud Builder UI doesn’t provide a back button after a successful SDDC bringup. I have written a blog Post in the past where I showed the API method of resetting CB for a new bringup.
This post is an extension of my earlier post. Here I will demonstrate the database hack method to initiate a fresh bringup.
Step 1: Login to Cloud Builder via SSH and switch to root user.
Step 2: Connect to the Database
1 |
# psql -U postgres -d bringup -h /home/postgresql/ |
Step 3: Nuke the Bringup related tables
1 2 3 4 5 |
bringup=# delete from execution; bringup=# delete from "Resource"; bringup=# \q |
Refresh the CB UI and you will be returned to the checklist page.… Read More