Re: nohup and Ant question

2011-01-11 Thread dfreis
1045680.n5.nabble.com/nohup-and-Ant-question-tp1350407p3336165.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

RE: nohup and Ant question

2008-01-28 Thread Barry Pape
tting rexec to work and went back to exec. -Original Message- From: Z W [mailto:[EMAIL PROTECTED] Sent: Monday, January 28, 2008 3:23 PM To: Ant Users List Subject: Re: nohup and Ant question Barry It's a little complicated for me in that solution. Do you have a simpler one ? Will i

Re: nohup and Ant question

2008-01-28 Thread Z W
Barry It's a little complicated for me in that solution. Do you have a simpler one ? Will it work for as opposed to ? Thanks

RE: nohup and Ant question

2008-01-28 Thread Barry Pape
Sounds similar to the issue I just had. The solution that worked for me came from here: http://marc.info/?l=ant-user&m=100621497023872&w=2 -Original Message- From: Z W [mailto:[EMAIL PROTECTED] Sent: Friday, January 25, 2008 3:25 PM To: Ant Users List Subject: Re: nohup

Re: nohup and Ant question

2008-01-25 Thread Z W
Hi Chuck Appreciate your response. I'm using Ant 1.7 on Windows. I'm pretty sure it's an ANT issue that doesn't deal well with nohup. Is there a workaround with Ant. Running the unix script directly, the pid is found; not a shell script issue.

Re: nohup and Ant question

2008-01-25 Thread Chuck Holzwarth
You may have several problems here. Both nohup commands start asynchronous processes that don't end when the connection is broken and you may end up with zombies running. Both nohup commands write to nohup.out with the second one probably overwriting the same file. You can do this on Unix/Luni

nohup and Ant question

2008-01-24 Thread Z W
Hi I have a shell script where in it, it has these lines nohup ./mdmctl start-t -dep zg & nohup vmstat 10 > $log_location/vmstat_$1.log & echo "Wait to come up...sleep for 100 secs" sleep 100 echo "Starting prstat." pid=`ps -ef|awk '/'"java -server -XX:CompileThreshold"'/ && !/bash/ {print $2}'`