Displaying 5 results from an estimated 5 matches for "domains_with_st".
2009 Nov 17
0
xend and xen-tool crashed after intensive operation
...ong Output all VM details in SXP
--label Include security labels
--state=<state> Select only VMs with the specified state
>vi /var/log/xen/xend.log
[2009-11-17 09:16:57 3087] ERROR (xmlrpclib2:178) Internal error handling
xend.domains_with_state
Traceback (most recent call last):
File "/usr/lib64/python2.5/site-packages/xen/util/xmlrpclib2.py", line
131, in _marshaled_dispatch
response = self._dispatch(method, params)
File "/usr/lib64/python2.5/SimpleXMLRPCServer.py", line 415, in _dispatch
return func(*p...
2010 May 25
0
Loss of hypervisor control - xm, xentop
...ot. What causes this problem?
As they are running critical services on a production system, my last
resort would be rebooting the Dom0. Is there anything else I can do?
Please help!
Steve
/var/log/xen/xend.log:
[2010-05-25 09:04:40 4256] ERROR (xmlrpclib2:178) Internal error
handling xend.domains_with_state
Traceback (most recent call last):
File "/usr/lib/xen-3.2-1/lib/python/xen/util/xmlrpclib2.py", line 131,
in _marshaled_dispatch
response = self._dispatch(method, params)
File "/usr/lib/python2.5/SimpleXMLRPCServer.py", line 415, in
_dispatch
return func(*params)...
2014 Apr 10
0
Bug#744163: xenstore problems
...transaction = xshandle().transaction_start()
Error: (2, 'No such file or directory')
After restaring xend even a simple 'xm list' operation results in Error: (2, 'No such file or directory'):
[2014-04-02 18:17:01 28301] ERROR (xmlrpclib2:181) Internal error handling xend.domains_with_state
Traceback (most recent call last):
File "/usr/lib/xen-4.1/bin/../lib/python/xen/util/xmlrpclib2.py", line 134, in _marshaled_dispatch
response = self._dispatch(method, params)
File "/usr/lib/python2.7/SimpleXMLRPCServer.py", line 420, in _dispatch
return func(*par...
2008 May 02
6
Python script to collect domU stats
I''ve attached a python script that collects stats from DomUs (HVM and
PVM). I hope this would be useful for somebody else.
See comments for more info.
regards,
Diego
--
--------------
Diego Woitasen
XTECH
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2008 Jul 11
0
PATCH: Ignore errors from dieing domains in RPC server
...niel P. Berrange <berrange@redhat.com>
diff -r 27aaff984b36 tools/python/xen/xend/server/XMLRPCServer.py
--- a/tools/python/xen/xend/server/XMLRPCServer.py Thu Jul 10 17:33:23 2008 +0100
+++ b/tools/python/xen/xend/server/XMLRPCServer.py Fri Jul 11 12:28:02 2008 +0100
@@ -64,7 +64,14 @@
def domains_with_state(detail, state, full):
if detail:
domains = XendDomain.instance().list_sorted(state)
- return map(lambda dom: fixup_sxpr(dom.sxpr(not full)), domains)
+ ret = []
+ for dom in domains:
+ try:
+ ret.append(fixup_sxpr(dom.sxpr(not full)))...