libvirt バージョン: 3.2.0
これは私の libvirtd.conf の設定です。
vim /etc/libvirt/libvirtd.conf
listen_tls = 0
listen_tcp = 1
auth_tcp = "none"
上記の構成を使用しない場合、問題なく libvirt をシャットダウンして再起動します。しかし、私はライブ マイグレーションをしたいので、上記のパラメータを追加する必要があります. 問題を追加した後. シャットダウンと再起動が失敗した原因
cat /usr/lib/systemd/system/libvirtd.service
[root@localhost wl]# cat /usr/lib/systemd/system/libvirtd.service
# NB we don't use socket activation. When libvirtd starts it will
# spawn any virtual machines registered for autostart. We want this
# to occur on every boot, regardless of whether any client connects
# to a socket. Thus socket activation doesn't have any benefit
[Unit]
Description=Virtualization daemon
Requires=virtlogd.socket
Requires=virtlockd.socket
Before=libvirt-guests.service
After=network.target
After=dbus.service
After=iscsid.service
After=apparmor.service
After=local-fs.target
After=remote-fs.target
Documentation=man:libvirtd(8)
Documentation=http://libvirt.org
[Service]
Type=notify
EnvironmentFile=-/etc/sysconfig/libvirtd
ExecStart=/usr/sbin/libvirtd $LIBVIRTD_ARGS **-d -l**
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
# At least 1 FD per guest, often 2 (eg qemu monitor + qemu agent).
# eg if we want to support 4096 guests, we'll typically need 8192 FDs
# If changing this, also consider virtlogd.service & virtlockd.service
# limits which are also related to number of guests
LimitNOFILE=8192
[Install]
WantedBy=multi-user.target
Also=virtlockd.socket
Also=virtlogd.socket
-d -l 上記の太字の作業, また、ライブ マイグレーション プラスをサポートする
まず、「systemctl start libvirtd」を使用して libvirt を起動します。
その後、systemctl は libvirtd を停止しますが、libvirt は閉じません
問題は、「systemctl restart libvirtd」コマンドを使用するとエラーになることです
何が問題なのか聞きたいですか?どうすれば解決できますか?