|
|
|
|
|
|
|
|
|
|
xen-users
[Xen-users] Re:Migration and relocation parameters
Hi,
Regarding Ian Brown question about Migration:
I have a version of Xen Unstable from yesterday and
migration both to local machine and to a Dom0 on
a different machine works.
You said the error you get is:
"Error: can't connect: Connection refused"
(which is "ECONNREFUSED" errno).
I assume with high level of certainty that this problem
can be traced to setupRelocation() method in tools/python/xen/xendf/relocate.py.
This is how this method starts:
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((dst, port))
except socket.error, err:
raise XendError("can't connect: %s" % err[1])
The default relocation port is 8002. (look at /etc/xen/xend-config.sxp).
Make sure that you "xend-relocation-port 8002" is
uncommneted and you are litening on this port.
The "xend-address localhost" should be commeneted to enable
remote connections.
You can verify this by running that running this python snippest solely
(replacing the dst with the right IP), or simply "telnet dst port"
Regards,
Rami Rosen
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-users] Re:Migration and relocation parameters,
Rami Rosen <=
|
|
|
|
|