Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドを使用して、centos で kvm をシャットダウンしようとしていますvirsh shutdown vm1。ACPI 機能が xml を使用して仕様に存在するかどうかを確認しましたvirsh dumpxml vm1 | grep -F acpi。ここで何が欠けていますか?VMを強制的にシャットダウンしたくありません。
virsh shutdown vm1
virsh dumpxml vm1 | grep -F acpi
デーモン プロセスは VM ゲストで実行されている必要があります。acpid実行されていないと、ハイパーバイザーからの要求に応答しません。
acpid
ゲストの内側から:
service acpid status
実行中の acpid を返す必要があります。試行しない場合:
sudo yum install acpid sudo chkconfig acpid on sudo service acpid start