>> Now how to make this guest domain active again. While reading through
>> "xvm" man pages, I found that, we can set the following properties for
>> the domain.
>> 1) on_xend_stop=ignore
>> 2) on_xend_start=start
>>
>> Que 1) How to set this properties for the domain, to make guest domain
>> running when we reboot the host itself.
>
> This is difficult at the moment, we are missing the ability to set these
> parameters easily (and we're working on it). You'll have to create a .py
> file for your domain in the old-style format, and specify it there.
>
Until we have get/set functionality, you can modify
domain state (e.g. properties which don't already have
commands for modifying them) by doing the following
while the domain is shutdown...
# xm list -l <your domain name> > /tmp/mydomain.sxp
modify mydomain.sxp
# xm new -F /tmp/mydomain.sxp
MRJ
|