$sudo xm list
Error: int exceeds XML-RPC limits
Usage: xm list [options] [Domain, ...]
List information about all/some domains.
-l, --long Output all VM details in SXP
--label Include security labels
--state=<state> Select only VMs with the specified state
--nohide Include the hiden domains
参考
/usr/lib64/python2.4/xmlrpclib.py中有如下判断int类型范围:
def dump_int(self, value, write):
# in case ints are > 32 bits
if value > MAXINT or value < MININT:
raise OverflowError, "int exceeds XML-RPC limits"