Description
VM is crashed.
Contents
Error 5330, Host is crashed
Possible solutions
- Examine the actions that led to the damage to the VM:
- Connect to the server with the platform via SSH. For more information about connecting via SSH, see Workstation setup.
- Enter the vm_box container:
docker exec -it vm_box bash
- Find the SQL query that caused the error:
Save the request_id value from the command output. If the command output contains multiple entries, use the one where the id parameter matches the VM id from the platform interface.grep "UPDATE vm_host SET state='crashed'" /var/log/vm_writer.log*
- Examine the logs of the task that set the VM to the "Crashed" status:
grep -r <request_id> /var/log/*
Usually the cause of the error is related to the last entry from the command output.Comments to the command