How to fix VIO Web Client Plugin after a failed deployment
It occurred to me recently that after recovering a VIO failed deployment, in my case an issue with one of the database nodes, in the Web Client Plugin the OpenStack Cluster still was in Error state.
After investigating a bit internally and thanks to my colleague Dimitri Desmidt I was able to solve it.
Open an SSH connection as viouser
to the VIO Management Server and elevate to root
. Launch psql
with the following command:
/opt/vmware/vpostgres/current/bin/psql -U omsdb
From psql
prompt execute:
update cluster set status='RUNNING';
After that logout and login back to Web Client and the cluster will be now in Running status.
Juanma.
Comments