I take that back ... I can get ASP.NET working with the "--nonstop" switch, but I just can't get control back.
Thanks. -Abe
Hi
Try to start it with mono /usr/local/bin/mod-mono-server.exe --nonstop --root . --applications &
(watch out for the '&'!)
this is not a mono thing, the & is used under linux (AFAIK with other Unix versions too) to set a process to the background.
if you have to loggout from this console late, use it with:
nohup "mono /usr/local/bin/mod-mono-server.exe --nonstop --root . --applications" &
nohup prevents the system for sending the HUP (hang up) signal that hapens if you close the shell.
hope that helps
Dominik _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
