[Catalyst] script/myapp_fastcgi.pl -d vs. nohup script/myapp_fasctgi.pl

2008-06-06 Thread Dan Dascalescu
What is the difference between launching `script/myapp_fastcgi.pl -daemon` and running `nohup script/myapp_fastcgi.pl ' ? I want to be able to run fastcgi.pl -l in the background, with debugging enabled, and log its STDERR. I tried script/myapp_fastcgi.pl -l 127.0.0.1:55900 -d 2myapp.stderr but

Re: [Catalyst] script/myapp_fastcgi.pl -d vs. nohup script/myapp_fasctgi.pl

2008-06-06 Thread Mitch Jackson
On Fri, Jun 6, 2008 at 4:22 AM, Dan Dascalescu [EMAIL PROTECTED] wrote: Works as expected. Even after I log out (without running nohup), the app correctly logs requests to myapp.stderr. I'm writing a tutorial on Catalyst deployment with lighttpd and fastcgi at

Re: [Catalyst] script/myapp_fastcgi.pl -d vs. nohup script/myapp_fasctgi.pl

2008-06-06 Thread Ash Berlin
On 6 Jun 2008, at 14:50, Mitch Jackson wrote: On Fri, Jun 6, 2008 at 4:22 AM, Dan Dascalescu [EMAIL PROTECTED] wrote: Works as expected. Even after I log out (without running nohup), the app correctly logs requests to myapp.stderr. I'm writing a tutorial on Catalyst deployment with