WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

[Xen-users] Configuring VNC for a PV VM causes rebooting issue when a VM

To: xen-users@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-users] Configuring VNC for a PV VM causes rebooting issue when a VM is under Xend domain management
From: Hongming Xiao <xiaohm@xxxxxxxxx>
Date: Wed, 15 Dec 2010 15:06:17 -0500
Delivery-date: Wed, 15 Dec 2010 12:07:32 -0800
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=53dTqIi14GPjhBGMsDyda4gmkQlY7+kfsHVpw9fnMy8=; b=GocSVb8LLD+BOlLmwtfIrmFC9Xw2zWZSA2uTqCpQB7XZFzo33LNSY7z21dKaeKi0JC UhmYbdkc5h02r3PPz6PoohXZQoL4QqhrAeb5QrP36Albv2W6/s68ud0E0SaG6f8mixki fwQvkuyDtJ9xVNuVEpBwlnkk67f19UF6ZTcyw=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=iOaNqe7MPM5GwbtnWPJB1Ru66QEX/52qGqh3CZxGcDbfRF0yHCYt+fk+VgKJz430j5 zkBr0Y9E/I9ztq8+BCROeC//F0sflVuB4/GTBbdRvUKxOSRoQm2bzhO0QQ8GCv6qKVG6 kh3gaMxi+hdFR+L9G4qGRt1CaX5Z9OnWKk0oU=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
All,
 
I post this issue since I couldn't find anybody report a similar one before. If it is a known issue, please let me know.
 
1. Problem
 
If the configuration of a PV VM contains following line, the VM won't be able to restart if it is under xend domain management. 
 
vfb = [ "type=vnc, vncunused=0, vncdisplay=10" ]
 
2. Environment
 
Xen Version: Xen-3.4.2-2, 64 bit.
Domain-0 OS: Linux version 2.6.18-194.11.4.el5xen (mockbuild@xxxxxxxxxxxxxxxxxxxx) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Tue Sep 21 05:40:24 EDT 2010
PV-VM OS: Linux version 2.6.18-194.11.4.el5xen (mockbuild@xxxxxxxxxxxxxxxxxxxx) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Tue Sep 21 05:40:24 EDT 2010
 
3. Steps to reproduce
 
VM Configuration: /etc/xen/abc
 
name = "abc"
uuid = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
maxmem = "3072"
memory = "3072"
vcpus = "4"
bootloader = "/usr/bin/pygrub"
> >>vfb = [ "type=vnc, vncunused=0, vncdisplay=10" ]
disk = [ "phy:/dev/VolGroup00/lv_xxx,xvda,w", ]
vif = ["mac=xx:xx:xx:xx:xx:xx,bridge=abcd", "mac=xx:xx:xx:xx:xx:xx,bridge=def" ]
 
Once the VM is created, the problem can be consistently reproduced using following commands,
 
#xm new abc
#xm start abc
#xm reboot abc
 
Connecting to VM's console at this moment will see following messages, as expected.

Turning off swap:
Unmounting file systems:
Please stand by while rebooting the system...
Restarting system.

However, the VM won't start up even though it says "Restaring system". Connecting to the console at this time, the console shows nothing. xm list displays the state of the vm as following,
 
mss                                         31  3072     4     -b----      1.5
Instead of using "xm reboot abc", the problem can also be reproduced if ssh to the VM and issues a reboot command.
4. Further findings:
 
a) Replace vfb = [ "type=vnc, vncunused=0, vncdisplay=10" ] with vfg = [ ] in /etc/xen/abc can solve the problem. However, we have to enable VNC.
 
b) Following methods can be used to start the VM after the VM is in problem,
 
Method 1:
# xm destroy abc
# xm new abc
# xm start abc

Method 2:
 
# xm destroy abc
# xm creat abc
 
Method 3:

# xm destroy abc
# service xend stop
 
Remove following line from  /var/lib/xend/domains/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/config.sxp 
    (device
        (console
            (protocol vt100)
            (location 2)
            (uuid e0ad7f84-107b-4ff7-0378-43f40442d8f7)
        )
    )

 
Be noted that above lines are added by xend when executing "xm destroy abc" or "service xend stop". When the file is created when running "xm new abc", it doesn't have above lines. Are these new added lines conflict with VNC configuration, somehow?
 
After removing above lines, the VM can be started using following commands,
 
# service xend start
# xm start abc
 
5. Any suggestion?
 
Is there any solution if we have to support all of following features?

a) have to configure VNC for the VM
b) have to add VM under Xend management by using "xm new"
c) have to allow a VM rebooting itself
 
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
<Prev in Thread] Current Thread [Next in Thread>