On Thu, Jul 1, 2010 at 6:57 AM, Ketan <[email protected]> wrote:
[snip]
> and from Wanboot server Logs
>
> Jul 01 11:45:16  essapl020-u012 wanboot: [ID 790322 user.info] Will retry in 
> 25 seconds ...
> Jul 01 11:45:41  essapl020-u012 wanboot: [ID 379107 user.alert] miniinfo: 
> Request returned code 500
> Jul 01 11:45:41  essapl020-u012 wanboot: [ID 232154 user.alert] Internal 
> Server Error (root filesystem image missing)

That looks like your problem...

I'd look to be sure that root_file is at the place that your
wanboot.conf says it is and that it is readable by the user that
wanboot-cgi is running as.

http://docs.sun.com/app/docs/doc/817-5504/6mkv4nh8e?a=view

If that still doesn't guide you down the right path, you could try
some dtrace - this is untested...

#! /usr/sbin/dtrace -qs

syscall::open*:entry
/execname == "wanboot-cgi"/
{
    self->path = copyinstr(arg0);
}

syscall::open*:return
/self->path != 0 && arg0 == -1 /
{
   printf("%s[%d] open(%s) failed with errno %d\n",
        execname, pid, self->path, errno);
}

syscall::open*:return
/self->path != 0/
{
    self->path = 0;
}

> Jul 01 11:45:41  essapl020-u012 wanboot: [ID 609098 user.info] Maximum 
> retries exceeded.
> Jul 01 11:45:41  essapl020-u012 wanboot: [ID 656746 user.crit] Miniroot info 
> download aborted
>
> I checked all the configuration again . but still getting same error

I'm betting that you have a typo (transposed letters?) or permission problem.

-- 
Mike Gerdts
http://mgerdts.blogspot.com/
_______________________________________________
install-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/install-discuss

Reply via email to