În cazul meu, problema a fost că aveam un fișier în folderul autostart și nu un link.
root@kvm1630:/etc/libvirt/qemu # ls -l
-rw------- 1 rădăcină rădăcină 7982 févr. 18 15:17 hebergement.xml
root@kvm1630:/etc/libvirt/qemu # ls -l autostart/
-rwx------ 1 root root 6195 aprilie 16 2021 hebergement.xml*
Soluție: ștergeți fișierul și creați o legătură simbolică.
root@kvm1630:/etc/libvirt/qemu # rm autostart/hebergement.xml
rm: eliminați fișierul obișnuit „autostart/hebergement.xml”? y
Apoi rulați din nou comanda pentru a face pornirea automată a VM:
root@kvm1630:/etc/libvirt/qemu # virsh autostart hebergement
Hebergement de domeniu marcat ca pornit automat
root@kvm1630:/etc/libvirt/qemu # ls -l autostart/
lrwxrwxrwx 1 rădăcină rădăcină 33 févr. 18 15:49 hebergement.xml -> /etc/libvirt/qemu/hebergement.xml
În cele din urmă verificăm dacă VM-ul este într-adevăr pornit automat.
root@kvm1630:/etc/libvirt/qemu # virsh dominfo hebergement
Id: 9
Nume: hebergement
UUID: 74590197-8b3a-4bed-95e6-653ce7c456af
Tip OS: hvm
Stare: alergare
CPU(e): 1
Timp CPU: 6614,7s
Memorie maximă: 8388608 KiB
Memorie folosită: 8388608 KiB
Persistent: da
Autostart: activați
Salvare gestionată: nu
Model de securitate: niciunul
DOI de securitate: 0
FYI, folosesc fi-backup un script LibVirtKvm pentru a crea instantanee VM în fiecare oră... Consecință: fișierul xml de definiție VM este schimbat în fiecare oră astfel:
root@kvm1630:/etc/libvirt/qemu # colordiff hebergement.xml autostart/hebergement.xml
46,83c48
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-151710'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-141710'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-131710'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-121709'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-111709'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-101711'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-091738'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-091200'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.bimg-20220218-082151'/>
< <backingStore type='file'>
< <format type='qcow2'/>
<<source file='/var/lib/libvirt/images/hebergement.qcow2'/>
< <backingStore/>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
< </backingStore>
---
> <source file='/var/lib/libvirt/images/hebergement.bimg-20210415-011726'/>
sper ca ajuta
Ernest.