Re: Creating a Daemon

2003-08-24 Thread Jake
Thanks, I didn't know about Net::Server::Daemonize. I've got it working now, Thanks Jay Rocco Caputo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Sat, Aug 23, 2003 at 01:05:15PM -0500, Jake wrote: Hi, I want to create a POE server that doesn't block my terminal when I

Re: Creating a Daemon

2003-08-24 Thread sungo
Sam Vilain wrote: If you're going to ignore the appropriate module, you should at least also disassociate from the terminal and set a new process session ID: i developed that methodology BEFORE the module even existed so NYEH :) -- Matt Cashner http://eekeek.org

Re: Creating a Daemon

2003-08-24 Thread Sam Vilain
On Sun, 24 Aug 2003 00:10, sungo wrote; su fork and exit unless DEBUG; # provided of course you have a su DEBUG constant very early in your program. that way, in debug su mode, the program will stay attached and spew its debug su content. otherwise, it will daemonize. If you're going to

Creating a Daemon

2003-08-23 Thread Jake
Hi, I want to create a POE server that doesn't block my terminal when I start it. I did it with a fork but I haven't seen anyone do it this way so I figure I'm missing something in POE to do it. How am I supposed to build a server that when I start it, I get my prompt back? Thanks Jay So far