Here is the relevant log snippet: journal: libvirt version: 1.2.8, package: 16.el7_1.3 (CentOS BuildSystem <http://bugs.centos.org>, 2015-05-12-20:12:58, worker1.bsys.centos.org) journal: failed to connect to monitor socket: No such process journal: internal error: process exited while connecting to monitor: ((null):1937): Spice-Warning **: reds.c:3036:reds_init_socket: getaddrinfo(127.0.0.1,5900): Address family for hostname not supported qemu-kvm: failed to initialize spice server If I remove graphics devices from the VM it saves/resumes properly on host restart. https://bugzilla.redhat.com/show_bug.cgi?id=721350 I feel like this is an issue of libvirt starting before networking, but I am a fish out of water with systemd. Any thoughts? -Jason -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Principal Consultant 10 West 24th Street #100 - - +1 (443) 269-1555 x333 Baltimore, Maryland 21218 - - - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Gordon Messmer
2015-Aug-31 16:15 UTC
[CentOS] Libvirt resume guest startup issues centos 7
On 08/31/2015 03:51 AM, Jason Pyeron wrote:> I feel like this is an issue of libvirt starting before networking, but I am > a fish out of water with systemd.Are you using the "network" or "NetworkManager" service to configure your network devices?
> -----Original Message----- > From: Gordon Messmer > Sent: Monday, August 31, 2015 12:15 PM > > On 08/31/2015 03:51 AM, Jason Pyeron wrote: > > I feel like this is an issue of libvirt starting before networking, > > but I am a fish out of water with systemd. > > Are you using the "network" or "NetworkManager" service to > configure your network devices?Likely, if that is how they are out of the box. # for i in /etc/sysconfig/network-scripts/ifcfg-*; do echo -e '\n#' $i; cat $i; done # /etc/sysconfig/network-scripts/ifcfg-br0 DEVICE=br0 TYPE=Bridge BOOTPROTO=dhcp DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=no IPV6INIT=no IPV6_AUTOCONF=no IPV6_DEFROUTE=no IPV6_PEERDNS=no IPV6_PEERROUTES=no IPV6_FAILURE_FATAL=no ONBOOT=yes # /etc/sysconfig/network-scripts/ifcfg-eno1 #TYPE=Ethernet NAME=eno1 UUID=b270f0aa-6b68-4870-bbfd-d6da7c5c62c1 DEVICE=eno1 ONBOOT=yes BRIDGE=br0 # /etc/sysconfig/network-scripts/ifcfg-eno2 TYPE=Ethernet BOOTPROTO=dhcp DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=no IPV6INIT=no IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_PEERDNS=yes IPV6_PEERROUTES=yes IPV6_FAILURE_FATAL=no NAME=eno2 UUID=0a040609-202d-4467-ae37-65c6b8757c94 DEVICE=eno2 ONBOOT=no # /etc/sysconfig/network-scripts/ifcfg-lo DEVICE=lo IPADDR=127.0.0.1 NETMASK=255.0.0.0 NETWORK=127.0.0.0 # If you're having problems with gated making 127.0.0.0/8 a martian, # you can change this to something else (255.255.255.255, for example) BROADCAST=127.255.255.255 ONBOOT=yes NAME=loopback -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Principal Consultant 10 West 24th Street #100 - - +1 (443) 269-1555 x333 Baltimore, Maryland 21218 - - - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Gordon Messmer
2015-Sep-01 21:14 UTC
[CentOS] Libvirt resume guest startup issues centos 7
On 08/31/2015 03:51 AM, Jason Pyeron wrote:> journal: internal error: process exited while connecting to monitor: > ((null):1937): Spice-Warning **: reds.c:3036:reds_init_socket: > getaddrinfo(127.0.0.1,5900): Address family for hostname not supported > I feel like this is an issue of libvirt starting before networkingI've looked at this a bit... But, bear in mind that I don't use Spice, so everything I say may be wrong. I don't think libvirtd is starting before networking, regardless of the service. However, if you'd like to test that theory, you can copy /usr/lib/systemd/system/libvirtd.service to /etc/systemd/system and edit it. Replace the line "After=network.target" with "After=network-online.target", then reboot. See if that affects the problem in any way. The problem looks vaguely like the server is trying to use an IPv4 address (127.0.0.1) and an IPv6 address family. I'm not sure why it would do that. Were there any specific directions you followed to set up Spice?> https://bugzilla.redhat.com/show_bug.cgi?id=721350I don't think this bug is relevant, as it results in a return value of EAI_NONAME. In your case, getaddrinfo returns EAI_FAMILY.
> -----Original Message----- > From: Gordon Messmer > Sent: Tuesday, September 01, 2015 5:15 PM > > On 08/31/2015 03:51 AM, Jason Pyeron wrote: > > journal: internal error: process exited while connecting to monitor: > > ((null):1937): Spice-Warning **: reds.c:3036:reds_init_socket: > > getaddrinfo(127.0.0.1,5900): Address family for hostname > not supported > > I feel like this is an issue of libvirt starting before networking > > I've looked at this a bit... But, bear in mind that I don't > use Spice, so everything I say may be wrong.Same *exact* error with VNC.> > I don't think libvirtd is starting before networking, > regardless of the service. However, if you'd like to test > that theory, you can copy > /usr/lib/systemd/system/libvirtd.service to > /etc/systemd/system and edit it. Replace the line > "After=network.target" with "After=network-online.target", > then reboot. See if that affects the problem in any way. >Will try, but not until Wednesday / Thursday PM.> The problem looks vaguely like the server is trying to use an > IPv4 address (127.0.0.1) and an IPv6 address family. I'm not > sure why it would do that. Were there any specific > directions you followed to set up Spice?Dell PowerEdge 2970 ====================Install Centos 7 x64 minimum. [left as default] vi /etc/sysconfig/network-scripts/ifcfg-eno1 [change onboot=yes] service network restart yum update -y && yum install nano logwatch ntpd ntpdate && reboot nano /etc/hostname yum group install 'Virtualization Host' chkconfig libvirt-guests on yum install virt-manager xauth nano /etc/sysconfig/network-scripts/ifcfg-br0 [delete auto created virtbr0] Reboot [create vm with defaults - centos 7 x64 minimal] virsh autostart centos7.0 [reboot] [debug, pull out hair, email centos list, remove ipv6, remain puzzled]> > > https://bugzilla.redhat.com/show_bug.cgi?id=721350 > > I don't think this bug is relevant, as it results in a return > value of EAI_NONAME. In your case, getaddrinfo returns EAI_FAMILY.This and its linked tickets is where I figured to disable IPv6. -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Principal Consultant 10 West 24th Street #100 - - +1 (443) 269-1555 x333 Baltimore, Maryland 21218 - - - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Reasonably Related Threads
- NetworkManager updating resolv.cfg
- NetworkManager vs. Firewalld vs. /etc/sysconfig/network-scripts/ifcfg-*****
- NetworkManager updating resolv.cfg
- Libvirt resume guest startup issues centos 7
- Re: Centos 7 - "Device eth1 does not seem to be present, delaying initialization".