search for: xenderror

Displaying 20 results from an estimated 61 matches for "xenderror".

2005 Dec 22
3
bug report of xm list and xm vcpu-list
Hi, Xm list and xm vcpu-list show wrong DomID(name). Under this situation, # xm list Name ID Mem(MiB) VCPUs State Time(s) Domain-0 0 512 1 r----- 1064.6 test1 13 64 1 r----- 83879.7 # xm list 1 13 Error: Domain ''1'' not found when running ''xm list'' # xm list
2009 Feb 02
4
HVM Live Migration Troubles - Xen 3.3.1
...paused, relocating=relocating) File "/usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 268, in restore forkHelper(cmd, fd, handler.handler, True) File "/usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 391, in forkHelper raise XendError("%s failed" % string.join(cmd)) XendError: /usr/lib64/xen/bin/xc_restore 4 4 2 3 1 1 1 failed and on the sending hypervisor: [2009-02-02 11:57:32 11768] ERROR (XendCheckpoint:157) Save failed on domain xen20 (13) - r esuming. Traceback (most recent call last): File "/usr/lib64/p...
2013 Jan 27
1
Modifying Xen migration
...(most recent call last): File "/usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 211, in save forkHelper(cmd, fd, saveInputHandler, False, dominfo) File "/usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 477, in forkHelper raise XendError("%s failed: popen failed" % string.join(cmd)) XendError: /usr/lib64/xen/bin/xc_save 23 1385 0 0 4 failed: popen failed [2013-01-18 15:54:48 xend.XendDomainInfo 11608] DEBUG (XendDomainInfo:2403) XendDomainInfo.resumeDomain(1385) [2013-01-18 15:54:48 xend 11608] DEBUG (XendCheckpoint:240)...
2011 Sep 13
3
Internal error during live migration saving
...putHandler(line, child.tochild) File "/usr/lib64/python2.6/site-packages/xen/xend/XendCheckpoint.py", line 131, in saveInputHandler dominfo.waitForSuspend() File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 2998, in waitForSuspend raise XendError(msg) XendError: Timeout waiting for domain 77 to suspend [2011-09-13 13:50:06 3996] DEBUG (XendDomainInfo:3135) XendDomainInfo.resumeDomain(77) xend-debug.log and the target dom0 logs don''t show anything of value. This is xen 4.1.1 on linux 3.0.3 - Nathan -- Nathan March<nathan@gt...
2007 Jul 22
1
Issue with CentOS 4.5 as DomU
...equest create failed. Traceback (most recent call last): File "/usr/lib64/python2.4/site-packages/xen/web/SrvBase.py", line 85, in perform return op_method(op, req) File "/usr/lib64/python2.4/site-packages/xen/xend/server/SrvDomainDir.py", line 82, in op_create raise XendError("Error creating domain: " + str(ex)) XendError: Error creating domain: (22, 'Invalid argument') Any suggestions? Thanks.
2010 Aug 19
0
Xend dont start anymore
...py", line 26, in ? from xen.xend import XendDomain File "//usr/lib64/python/xen/xend/XendDomain.py", line 35, in ? from xen.xend import XendOptions, XendCheckpoint, XendDomainInfo File "//usr/lib64/python/xen/xend/XendOptions.py", line 34, in ? from xen.xend.XendError import XendError File "//usr/lib64/python/xen/xend/XendError.py", line 19, in ? from xmlrpclib import Fault File "/usr/lib/python2.4/xmlrpclib.py", line 506, in ? from xml.parsers import expat File "/usr/lib/python2.4/xml/parsers/expat.py", line 34 Py...
2010 May 06
0
Problem to suspend/resume vm...
...iled Traceback (most recent call last): File "usr/lib/python2.5/site-packages/xen/xend/XendCheckpoint.py", line 309, in restore forkHelper(cmd, fd, handler.handler, True) File "usr/lib/python2.5/site-packages/xen/xend/XendCheckpoint.py", line 411, in forkHelper raise XendError("%s failed" % string.join(cmd)) XendError: /usr/lib/xen/bin/xc_restore 28 2 3 4 1 1 1 0 failed [2010-05-06 12:29:59 2040] ERROR (XendDomain:963) Exception occurred when resuming Traceback (most recent call last): File "usr/lib/python2.5/site-packages/xen/xend/XendDomain.py", l...
2010 May 06
0
Problem to suspend/resume vm...
...iled Traceback (most recent call last): File "usr/lib/python2.5/site-packages/xen/xend/XendCheckpoint.py", line 309, in restore forkHelper(cmd, fd, handler.handler, True) File "usr/lib/python2.5/site-packages/xen/xend/XendCheckpoint.py", line 411, in forkHelper raise XendError("%s failed" % string.join(cmd)) XendError: /usr/lib/xen/bin/xc_restore 28 2 3 4 1 1 1 0 failed [2010-05-06 12:29:59 2040] ERROR (XendDomain:963) Exception occurred when resuming Traceback (most recent call last): File "usr/lib/python2.5/site-packages/xen/xend/XendDomain.py", l...
2010 May 16
2
[PATCH][RESENT] xend: fix bug in xend option parsing
...ing(name) - if os.path.dirname(file) == "": + if file and os.path.dirname(file) == "": file = auxbin.xen_configdir() + ''/'' + file; - if not os.path.exists(file): + if file and not os.path.exists(file): raise XendError("invalid xend config %s: directory ''%s'' does not exist" % (name, file)) return file def get_xend_tcp_xmlrpc_server_ssl_cert_file(self): name = ''xend-tcp-xmlrpc-server-ssl-cert-file'' file = self.get_config_string(name) -...
2011 Mar 03
6
[PATCH] Make explicit message when guest failed to suspend
Recent xen uses xenbus to suspend PV-on-HVM guest domain. The related code in the xen-unstable tree will fall into infinite loop when guest domain failed on suspending one or more devices. The patch attached changes the logic, and raises an XendError after 1 minute waiting. The patch also makes use of "control/shutdown" entry in xenstore, allows guest kernel report the failure of the suspending. Any suggestions? --- linux-2.6-xen/drivers/xen/manage.c | 8 ++++++++ tools/python/xen/xend/XendDomainInfo.py | 27 ++++++++++++++...
2010 Nov 26
1
Snapshot fail, when snapshot a vm the second time. (already update to xen-4.0.1 and kernel-2.6.32.25)
...inputHandler(line, child.tochild) File "usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 131, in saveInputHandler dominfo.waitForSuspend() File "/usr/lib64/python2.4/site-packages/xen/xend/XendDomainInfo.py", line 2980, in waitForSuspend raise XendError(msg) XendError: Timeout waiting for domain 2 to suspend [2010-11-26 15:40:49 5411] DEBUG (XendDomainInfo:3117) XendDomainInfo.resumeDomain(2) Thanks a lot. John -------------------------------------------------------- ZTE Information Security Notice: The information contained in this mail is sol...
2010 Nov 26
1
Snapshot fail, when snapshot a vm the second time. (already update to xen-4.0.1 and kernel-2.6.32.25)
...inputHandler(line, child.tochild) File "usr/lib64/python2.4/site-packages/xen/xend/XendCheckpoint.py", line 131, in saveInputHandler dominfo.waitForSuspend() File "/usr/lib64/python2.4/site-packages/xen/xend/XendDomainInfo.py", line 2980, in waitForSuspend raise XendError(msg) XendError: Timeout waiting for domain 2 to suspend [2010-11-26 15:40:49 5411] DEBUG (XendDomainInfo:3117) XendDomainInfo.resumeDomain(2) Thanks a lot. John -------------------------------------------------------- ZTE Information Security Notice: The information contained in this mail is sol...
2009 Jul 28
0
Xen 3.2 @ Debian 5.0 / Debian 4.0 DomU crashes daily
...Info:111) Domain construction failed Traceback (most recent call last): File "/usr/lib/xen-3.2-1/lib/python/xen/xend/XendDomainInfo.py", line 109, in create_from_dict vm.start() File "/usr/lib/xen-3.2-1/lib/python/xen/xend/XendDomainInfo.py", line 444, in start raise XendError(''VM already running'') XendError: VM already running [2009-07-27 12:24:33 5312] DEBUG (XendDomainInfo:1897) XendDomainInfo.destroy: domid=90 [2009-07-27 12:24:33 5312] ERROR (XendDomainInfo:1425) Failed to restart domain 90. Traceback (most recent call last): File "/usr/lib/...
2008 Mar 25
1
Xen3.1 Etch-backports | VE already running
...2) Domain construction failed Traceback (most recent call last): File "/usr/lib/xen-3.1-1/lib/python/xen/xend/XendDomainInfo.py", line 109, in create_from_dict vm.start() File "/usr/lib/xen-3.1-1/lib/python/xen/xend/XendDomainInfo.py", line 428, in start raise XendError(''VM already running'') XendError: VM already running [2008-03-25 18:43:27 2695] DEBUG (__init__:1072) XendDomainInfo.destroy: domid=6 [2008-03-25 18:43:27 2695] ERROR (__init__:1072) Failed to restart domain 6. Traceback (most recent call last): File "/usr/lib/xen-3.1-1/l...
2009 Feb 14
2
device model failure: no longer running;
...ice(true_devclass, dev, False); File "//usr/lib64/python/xen/xend/XendDomainInfo.py", line 924, in destroyDevice rc = self.getDeviceController(deviceClass).destroyDevice(devid, force) File "//usr/lib64/python/xen/xend/XendDomainInfo.py", line 1981, in getDeviceController raise XendError("Unknown device type: %s" % name) XendError: Unknown device type: None [2009-02-13 17:55:44 2952] DEBUG (XendDomainInfo:1959) Removing vbd/5632 [2009-02-13 17:55:44 2952] DEBUG (XendDomainInfo:910) XendDomainInfo.destroyDevice: deviceClass = None, device = vbd/5632 [2009-02-13 17:55:44 2...
2007 May 04
0
[PATCH] 3/4 "nemesis" scheduling domains for Xen
...omid, diff -r baff9c7cc4b3 tools/python/xen/xend/XendDomain.py --- a/tools/python/xen/xend/XendDomain.py Fri May 04 11:23:25 2007 -0400 +++ b/tools/python/xen/xend/XendDomain.py Fri May 04 14:26:45 2007 -0400 @@ -1424,6 +1424,84 @@ class XendDomain: log.exception(ex) raise XendError(str(ex)) + def domain_add_adom(self, adom, sdom): + """ Ad an activation domain to a scheduling domain. + + @param adom: activation domain ID + @type adom: int or string + @param sdom: scheduling domain ID + @type sdom: int or string + @...
2007 Jan 26
5
HVM restore broken?
I got latest (13601) yesterday evening. This doesn''t seem to work to do Restore (at least of the Windows test-image that I''ve been using for testing previously). The VM restores reasonably OK, but it jumps to an invalid address shortly after restoring, giving a D1 blue-screen error (DRIVER_IRQL_LESS_OR_EQUAL), which turns out to be "page-fault in driver" after I
2007 Aug 13
0
[BUG] migration problem
...d on domain Etch (1). Traceback (most recent call last): File "//usr/lib64/python/xen/xend/XendCheckpoint.py", line 109, in save forkHelper(cmd, fd, saveInputHandler, False) File "//usr/lib64/python/xen/xend/XendCheckpoint.py", line 337, in forkHelper raise XendError("%s failed" % string.join(cmd)) XendError: /usr/lib64/xen/bin/xc_save 24 1 0 0 0 failed [2007-08-13 16:53:19 3247] DEBUG (XendDomainInfo:1699) XendDomainInfo.resumeDomain(1) [2007-08-13 16:53:19 3247] DEBUG (XendCheckpoint:143) XendCheckpoint.save: resumeDomain and following one on x...
2007 Apr 10
7
PV domain save/restore break
...end/XendDomain.py", line 1081, in domain_restore_fd File "/home/gzhai/srcs/hg/tip/dist/install/usr/lib/python/xen/xend/XendCheckpoint.py", line 224, in restore File "/home/gzhai/srcs/hg/tip/dist/install/usr/lib/python/xen/xend/XendCheckpoint.py", line 324, in forkHelper XendError: /usr/lib/xen/bin/xc_restore 24 4 1 2 0 0 0 failed -- best rgds, edwin _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2009 Mar 10
0
Bug#519064: xen-utils-common: hvm migration fails because of missing /var/lib/xen/save
...point.restore(self, fd, paused=paused) File "/usr/lib/xen-3.2-1/lib/python/xen/xend/XendCheckpoint.py", line 261, in restore "invalid device model signature read") File "/usr/lib/xen-3.2-1/lib/python/xen/xend/XendCheckpoint.py", line 53, in read_exact raise XendError(errmsg) XendError: invalid device model signature read After some debugging I found out, that /etc/default/xendomains references a not existing directory: srv-vm01:~# grep ^XENDOMAINS_SAVE /etc/default/xendomains XENDOMAINS_SAVE=/var/lib/xen/save After then I created /var/lib/xen/save on both h...