stoping and starting datastage services

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
s1kaasam
Participant
Posts: 17
Joined: Wed Feb 02, 2005 5:11 pm
Location: virginia

stoping and starting datastage services

Post by s1kaasam »

Hi
In order to stop and start datastage services we have regular process of checking for any processes running on the box.

we do
ps -ef|grep ds
netstat -a|grep dsrpc
all that stuff.

these processes and all check for any processes running inside DSEngine that are locking the port before we bring down the services.

But what I have noticed in PX jobs is there are also processes running out of PXEngine that lock the same port which also have to be killed before bringing down.

I would want to know exactly what all processes have to be checked in PX jobs to be sure that no processes is holding the port before we bring down the services.

Any questions please let me know.
shravan
Amos.Rosmarin
Premium Member
Premium Member
Posts: 385
Joined: Tue Oct 07, 2003 4:55 am

Post by Amos.Rosmarin »

Hi,

What I usually do is to bring down the DS server and then do

Code: Select all

ps -ef | grep -i osh
It will show you if you have unfinished PX jobs.
then kill them -9

(in the same way 'ps -ef | grep -i pha' will show you DS server phantoms)


Amos
Post Reply