I managed to contact the manufacturer’s technical support about the problem when there are many disks with the status “error” in the database. VMware support confirmed that it is safe to delete disks with status “ERROR” from the database.
Connect to the DB:
sudo -i -u postgres psql vcloud
We find disks with the status ‘error’, if there are only a few we delete them by id.
select * from disk where creation_status = 'ERROR'
--delete from disk where creation_status = 'ERROR'
--delete from disk where id = 'd4053b97-292a-4a04-a97e-b7df37e1194e'
Leave a Reply