Applicable to:
- SolusVM
Symptoms
Unable to start VPS migration in SolusVM:
SVM_ERROR: Failed to insert migration into the database
Cause
Database inconsistency
Resolution
The root cause of the issue was that the database table 'migrations' was lacking column vserveruuid.
To fix this I did the following:
- Connected to Master node via SSH
- Backed up the database:
https://support.solus.io/hc/en-us/articles/360009293960-How-to-create-a-backup-of-SolusVM-database- - Accessed the database:
https://support.solus.io/hc/en-us/articles/360016113531-How-to-connect-to-SolusVM-Master-database - Added the column:
ALTER TABLE migrations ADD vserveruuid varchar(37) DEFAULT NULL;
Comments
0 commentsPlease sign in to leave a comment.