[Mono-list] Re: mod_mono / mod-mono-server.exe

Dominik Fretz lists@roboto.ch
Fri, 20 Feb 2004 16:53:56 +0100


Abe Gillespie wrote:
> 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