Hi all,
I''m trying to run Xen 3.2 on a FC8 system using python 2.5 . I compiled
xen
from source.
When I do xend start the daemon does not start.
This is what I get in the xend.log:
-----------------------------------------------------------------
2008-02-15 10:08:59 5825] INFO (SrvDaemon:219) Xend exited with status 1.
[2008-02-15 12:42:04 2752] INFO (SrvDaemon:331) Xend Daemon started
[2008-02-15 12:42:04 2752] INFO (SrvDaemon:335) Xend changeset: Wed Feb 06
10:06:35 2008 +0000 16759:d26b1b777fde.
[2008-02-15 12:42:04 2752] INFO (SrvDaemon:342) Xend version: Unknown.
[2008-02-15 12:42:04 2752] ERROR (SrvDaemon:353) Exception starting xend
((2, ''No such file or directory''))
Traceback (most recent call last):
File "//usr/lib64/python/xen/xend/server/SrvDaemon.py", line 345, in
run
servers = SrvServer.create()
File "//usr/lib64/python/xen/xend/server/SrvServer.py", line 251, in
create
root.putChild(''xend'', SrvRoot())
File "//usr/lib64/python/xen/xend/server/SrvRoot.py", line 40, in
__init__
self.get(name)
File "//usr/lib64/python/xen/web/SrvDir.py", line 82, in get
val = val.getobj()
File "//usr/lib64/python/xen/web/SrvDir.py", line 52, in getobj
self.obj = klassobj()
File "//usr/lib64/python/xen/xend/server/SrvDomainDir.py", line 41,
in
__init__
self.xd = XendDomain.instance()
File "//usr/lib64/python/xen/xend/XendDomain.py", line 1620, in
instance
inst.init()
File "//usr/lib64/python/xen/xend/XendDomain.py", line 109, in init
xstransact.Mkdir(XS_VMROOT)
File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 355,
in
Mkdir
complete(path, lambda t: t.mkdir(*args))
File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 361,
in
complete
t = xstransact(path)
File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 29,
in
__init__
self.transaction = xshandle().transaction_start()
File "//usr/lib64/python/xen/xend/xenstore/xsutil.py", line 18, in
xshandle
xs_handle = xen.lowlevel.xs.xs()
Error: (2, ''No such file or directory'')
-----------------------------------------------------------------------
It''s trying to locate a file but it doesn''t exist in its path.
Any idea which file it''s looking for and why it can''t find it?
I haven''t
moved around any files or anything like that. Any idea how I need to modify
my path to get it to work?
Also in the debug-log I get:
---------------------------------------------------------
Exception starting xend: (2, ''No such file or directory'')
Xend started at Tue Feb 26 10:00:09 2008.
sh: brctl: command not found
sh: brctl: command not found
-------------------------------------------------------------
I do have bridge-utils installed.
Following is list of file location that I suspect it might be looking for.
Let me know if any path seems weird:
--------------------------------------------------------------------------------------------------------------------------------------
/usr/lib64/xen/bin/xenconsole
/usr/sbin/xenconsoled
/usr/sbin/xentop
/usr/sbin/xend
Regards
Argyro
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
Torsten Lehmann
2008-Mar-06 12:01 UTC
[Xen-users] Re: Exception starting xend on a FC8 system
> sh: brctl: command not found > ------------------------------------------------------------- > I do have bridge-utils installed.Sure? which brctl find / -name brctl brctl show When you compile xen check: http://www2.fh-lausitz.de/launic/os-tips/xen/080207.xen_preinstall -- Torsten launoc _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Argyro Andreou
2008-Mar-06 15:03 UTC
Re: [Xen-users] Re: Exception starting xend on a FC8 system
Yes I''m sure I checked before posting. Argyro On Thu, Mar 6, 2008 at 7:01 AM, Torsten Lehmann <tlehmann@fh-lausitz.de> wrote:> > > > sh: brctl: command not found > > ------------------------------------------------------------- > > I do have bridge-utils installed. > > Sure? > > which brctl > find / -name brctl > brctl show > > > When you compile xen check: > http://www2.fh-lausitz.de/launic/os-tips/xen/080207.xen_preinstall > > > -- > Torsten > launoc > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Met the same issue. My workaround is mkdir -p /var/run/xenstored /etc/init.d/xen start Thanks, Michael Argyro Andreou wrote:> > Hi all, > > I''m trying to run Xen 3.2 on a FC8 system using python 2.5 . I compiled > xen > from source. > > When I do xend start the daemon does not start. > > This is what I get in the xend.log: > ----------------------------------------------------------------- > 2008-02-15 10:08:59 5825] INFO (SrvDaemon:219) Xend exited with status 1. > [2008-02-15 12:42:04 2752] INFO (SrvDaemon:331) Xend Daemon started > [2008-02-15 12:42:04 2752] INFO (SrvDaemon:335) Xend changeset: Wed Feb 06 > 10:06:35 2008 +0000 16759:d26b1b777fde. > [2008-02-15 12:42:04 2752] INFO (SrvDaemon:342) Xend version: Unknown. > [2008-02-15 12:42:04 2752] ERROR (SrvDaemon:353) Exception starting xend > ((2, ''No such file or directory'')) > Traceback (most recent call last): > File "//usr/lib64/python/xen/xend/server/SrvDaemon.py", line 345, in run > servers = SrvServer.create() > File "//usr/lib64/python/xen/xend/server/SrvServer.py", line 251, in > create > root.putChild(''xend'', SrvRoot()) > File "//usr/lib64/python/xen/xend/server/SrvRoot.py", line 40, in > __init__ > self.get(name) > File "//usr/lib64/python/xen/web/SrvDir.py", line 82, in get > val = val.getobj() > File "//usr/lib64/python/xen/web/SrvDir.py", line 52, in getobj > self.obj = klassobj() > File "//usr/lib64/python/xen/xend/server/SrvDomainDir.py", line 41, in > __init__ > self.xd = XendDomain.instance() > File "//usr/lib64/python/xen/xend/XendDomain.py", line 1620, in instance > inst.init() > File "//usr/lib64/python/xen/xend/XendDomain.py", line 109, in init > xstransact.Mkdir(XS_VMROOT) > File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 355, in > Mkdir > complete(path, lambda t: t.mkdir(*args)) > File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 361, in > complete > t = xstransact(path) > File "//usr/lib64/python/xen/xend/xenstore/xstransact.py", line 29, in > __init__ > self.transaction = xshandle().transaction_start() > File "//usr/lib64/python/xen/xend/xenstore/xsutil.py", line 18, in > xshandle > xs_handle = xen.lowlevel.xs.xs() > Error: (2, ''No such file or directory'') > ----------------------------------------------------------------------- > It''s trying to locate a file but it doesn''t exist in its path. > > Any idea which file it''s looking for and why it can''t find it? I haven''t > moved around any files or anything like that. Any idea how I need to > modify > my path to get it to work? > > Also in the debug-log I get: > --------------------------------------------------------- > Exception starting xend: (2, ''No such file or directory'') > Xend started at Tue Feb 26 10:00:09 2008. > sh: brctl: command not found > sh: brctl: command not found > ------------------------------------------------------------- > I do have bridge-utils installed. > > Following is list of file location that I suspect it might be looking for. > Let me know if any path seems weird: > -------------------------------------------------------------------------------------------------------------------------------------- > /usr/lib64/xen/bin/xenconsole > /usr/sbin/xenconsoled > /usr/sbin/xentop > /usr/sbin/xend > > Regards > Argyro > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >-- View this message in context: http://www.nabble.com/Exception-starting-xend-on-a-FC8-system-tp15741091p16461640.html Sent from the Xen - User mailing list archive at Nabble.com. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users