We are in the middle of v2t migration and we can't move forward due to the error.
What I did is I check the value to the DB Cell and update it.
Steps:
SSH Primary Cell login ad root
Type "sudo -su postgress psql vcloud"
Type \x so that you have good display
Run "select * from tenant_network_logical_resource where id = "XXXXX-XXXXX"
Note: In this process we just need to get the Tenant logical network ID
Now that we have the Tenant logical network ID. We will process to update the Network Name.
Type update tenant_network_logical_resource set name = 'NetworkName' where id = 'XXX-XXX-XXX';
Note: We can see the output there is network update value 1. meaning we successfully updated the network name on the DB
Next step just refresh your browser and you will see on the vCD Provider Web UI that the network name is updated as well
Note: This is my personal and owned experience that I love to share in the VMware Community. I hope you appreciate it, thank you
Comments