Found records with errors in syslog: many similar messages:
spice-vdagentd[2124]: Fatal could not create the server socket /run/spice-vdagentd/spice-vdagent-sock: Error binding to address: Address already in use
Systemd unit file: (I've added ExecStartPre because removal of /run/spice-vdagentd/spice-vdagentd-sock helped me one time to run vdagentd manually -- same result "address already in use" with or without this line)
# /etc/systemd/system/spice-vdagentd.service
[Unit]
Description=Agent daemon for Spice guests
After=dbus.target
Requires=spice-vdagentd.socket
[Service]
Type=forking
ExecStartPre=rm -f /run/spice-vdagentd/spice-vdagentd-sock
EnvironmentFile=-/etc/sysconfig/spice-vdagentd
ExecStart=/usr/sbin/spice-vdagentd $SPICE_VDAGENTD_EXTRA_ARGS
PIDFile=/run/spice-vdagentd/spice-vdagentd.pid
PrivateTmp=true
Restart=on-failure
[Install]
Also=spice-vdagentd.socket
26.08.2021, 19:40, "ole-krutov@xxxxxxxxx" <ole-krutov@xxxxxxxxx>:
I've built spice-vdagent 0.21 and had just replaced executables of vdagent 0.20. But after reboot spice-vdagentd.* do not start. Has something changed in startup logic since 0.20? I've compared configs but had not find any differences...