Proxmox and Webmin

SamTzu

Renowned Member
Mar 27, 2009
529
17
83
Helsinki, Finland
sami.mattila.eu
I have been testing how Proxmox and Webmin work together and have now set up a 'System and Server Status' alerts that attempt alert via e-mail and to restart services if they fail.

Check Process - VZ, works quite well.
Command to check for: vz
If monitor goes down, run command: /etc/init.d/vz restart
(Remember to turn scheduled checking of monitors on.)

So if a Proxmox/OpenVz node goes down I get an alert with in 5min and Webmin will try to restart the vz process. On my tests this worked well.

How ever 'Check Process - qemu-server' did not work as well.
/etc/init.d/qemu-server restart
does not behave like vz did. I can't get the KVM's to start up with that command even though they have been marked as 'Start at boot:'

Any ideas?
 
How ever 'Check Process - qemu-server' did not work as well.
/etc/init.d/qemu-server restart
does not behave like vz did. I can't get the KVM's to start up with that command even though they have been marked as 'Start at boot:'

Any ideas?

use

# /etc/init.d/qemu-server stop
# /etc/init.d/qemu-server start

or simply

# qm startall

- Dietmar