How can you tell if a system has Datastage running on it?

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
wfkurtz1
Premium Member
Premium Member
Posts: 17
Joined: Sat Oct 30, 2010 6:59 am
Location: Philadelphia
Contact:

How can you tell if a system has Datastage running on it?

Post by wfkurtz1 »

I have just gotten access to some HP-UX systems that I have been told have DataStage 8.1 running on them. I have command line access ($) to the HP-UX systems so I can run ps or other shell commands. Can someone tell me what I should look for to tell if any of the DS executables are running there?

Thanks in advance.
"The price of freedom is eternal vigilance."
-- Thomas Jefferson
stuartjvnorton
Participant
Posts: 527
Joined: Thu Apr 19, 2007 1:25 am
Location: Melbourne

Post by stuartjvnorton »

ps -ef | grep dsrpcd

This will tell you if the DataStage RPC service is running.

Cheers,
Stuart.
wfkurtz1
Premium Member
Premium Member
Posts: 17
Joined: Sat Oct 30, 2010 6:59 am
Location: Philadelphia
Contact:

Post by wfkurtz1 »

Thanks Stuart. Is this the process name of the server engine or the parallel engine? Or both?
"The price of freedom is eternal vigilance."
-- Thomas Jefferson
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Neither. Neither engine has its own process. The DataStage RPC daemon listens for connection requests from clients. But, if DataStage is running (that is, has been started), then dsrpcd will be running.

You might also like to use netstat -an | grep 3153[1,3] to determine whether the node and logging agents are running. The command to determine whether the services tier is running is serverStatus.sh followed by the name of the server (always server1 on current versions).
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply