Page 1 of 1

Problem while restartting datastage server

Posted: Thu Jul 06, 2006 2:22 am
by bhaskarjha
Hi,
When I stop the datastage server ($DSHOME/bin uv -admin -stop)
& again try to restart the server ($DSHOME/bin uv -admin -start). I am not able to start the server in single go. I have to stop & then start multiple times, to restart the server. Please help me in getting this problem resolved. The gap between stopping & starting the server is around a minute.
Thanks,

Posted: Thu Jul 06, 2006 5:53 am
by ray.wurlod
Take more time. Check with netstat that there are no active connections.

Posted: Thu Jul 06, 2006 6:47 am
by chulett
As noted, that's way too quick and would only work if there are zero client connections at the time you bring the server down. And we all know how often that is true.

Stop the server then start checking to see when all leftover connections release:

Code: Select all

netstat -a |grep dsrpc

-or-

netstat -a |grep dsrpc |wc -l
You need to wait for that to return zero records before you can restart the server. Sometimes that takes a minute or two, sometimes 20. Patience is the virtue here.

Posted: Thu Jul 06, 2006 7:30 am
by bhaskarjha
Thanks, I got the concept :D