Improve qemu monitor communication at start
Wait for the monitor to be alive via a no-op command before attempting to use the monitor for anything functional. Initial wait time is 30 seconds.
This commit is contained in:
parent
50e4397145
commit
a1a503d289
5
vmmd
5
vmmd
|
@ -1021,8 +1021,11 @@ class VirtualMachine(DbObject):
|
||||||
pass
|
pass
|
||||||
fork_child(argv)
|
fork_child(argv)
|
||||||
file_wait_exists(self._qemu_pidfile(), 2.0)
|
file_wait_exists(self._qemu_pidfile(), 2.0)
|
||||||
|
res = self._run_monitor_command('info status', 30.0)
|
||||||
|
if not res:
|
||||||
|
loge('Failed to communicate with monitor')
|
||||||
if resuming:
|
if resuming:
|
||||||
self._run_monitor_command('delvm vmm-suspend', 5.0)
|
self._run_monitor_command('delvm vmm-suspend')
|
||||||
if self['vncpass']:
|
if self['vncpass']:
|
||||||
self._run_monitor_command("change vnc password %s" % (self['vncpass']))
|
self._run_monitor_command("change vnc password %s" % (self['vncpass']))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue