|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Error conecting to xend: no such file or directory. Is x
Hi Michael,
Sounds like the directories:
/var/run/xenstored
/var/run/xend
are not being created.
I added the following code to /etc/init.d/xend which seems to make the
problem go away, unfortunately it doesn't happen immediately on boot
(anyone else suggest why?) So when I boot the server I go #
/etc/init.d/xend restart
That generally fixes it.
Code:
function await_daemons_up
{
# STHFIX - On Ubuntu /var/run/xenstored does not exist after reboot
if [ ! -d /var/run/xenstored ] ; then
mkdir /var/run/xenstored
fi
if [ ! -d /var/run/xend ] ; then
mkdir /var/run/xend
fi
#STHFIX END
Code END
Best Regards,
Quintin
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|