Re: How to run python script in background after i logout

2005-07-24 Thread Steve Holden
Harlin Seritt wrote: > I have a remote linux server where I can only access it via ssh. I have > a script that I need to have run all the time. I run like so: > > python script.py & > > It runs fine. When I log off ssh I notice that the script died when I > logged off. How do I make sure it stays

Re: How to run python script in background after i logout

2005-07-24 Thread James David
"Harlin Seritt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a remote linux server where I can only access it via ssh. I have > a script that I need to have run all the time. I run like so: > > python script.py & > > It runs fine. When I log off ssh I notice that the script

Re: How to run python script in background after i logout

2005-07-24 Thread Marek Kubica
Hello! On 24 Jul 2005 12:59:04 -0700 Steve M wrote: > Another is that when I use putty.exe from Windows for > my ssh client, I can't get scroll-back buffers to work correctly with > screen. (Screen is really powerful with its own scrollback buffers and > screendumps and stuff but I don't have tim

Re: How to run python script in background after i logout

2005-07-24 Thread Tomasz Rola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 24 Jul 2005, Harlin Seritt wrote: > I have a remote linux server where I can only access it via ssh. I have > a script that I need to have run all the time. I run like so: > > python script.py & > > It runs fine. When I log off ssh I notice that

Re: How to run python script in background after i logout

2005-07-24 Thread Steve M
Harlin Seritt wrote: > I have a remote linux server where I can only access it via ssh. I have > a script that I need to have run all the time. I run like so: > > python script.py & > > It runs fine. When I log off ssh I notice that the script died when I > logged off. How do I make sure it stays r

Re: How to run python script in background after i logout

2005-07-24 Thread Mike Meyer
Thanos Tsouanas <[EMAIL PROTECTED]> writes: > On Sun, Jul 24, 2005 at 12:51:17PM +0300, Thanos Tsouanas wrote: >> On Sun, Jul 24, 2005 at 02:43:44AM -0700, Harlin Seritt wrote: >> > I have a remote linux server where I can only access it via ssh. I have >> > a script that I need to have run all th

Re: How to run python script in background after i logout

2005-07-24 Thread Benji York
Harlin Seritt wrote: > python script.py & > > It runs fine. When I log off ssh I notice that the script died when I > logged off. How do I make sure it stays running? As another reply stated, cron is probably what you really want, but to answer your question literally: you want the "nohup" comm

Re: How to run python script in background after i logout

2005-07-24 Thread Thanos Tsouanas
On Sun, Jul 24, 2005 at 12:51:17PM +0300, Thanos Tsouanas wrote: > On Sun, Jul 24, 2005 at 02:43:44AM -0700, Harlin Seritt wrote: > > I have a remote linux server where I can only access it via ssh. I have > > a script that I need to have run all the time. I run like so: > > > > python script.py &

Re: How to run python script in background after i logout

2005-07-24 Thread Thanos Tsouanas
On Sun, Jul 24, 2005 at 02:43:44AM -0700, Harlin Seritt wrote: > I have a remote linux server where I can only access it via ssh. I have > a script that I need to have run all the time. I run like so: > > python script.py & > > It runs fine. When I log off ssh I notice that the script died when I

How to run python script in background after i logout

2005-07-24 Thread Harlin Seritt
I have a remote linux server where I can only access it via ssh. I have a script that I need to have run all the time. I run like so: python script.py & It runs fine. When I log off ssh I notice that the script died when I logged off. How do I make sure it stays running? thanks, Harlin Seritt