How to check if all DataStage Services are running

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
deps1972
Premium Member
Premium Member
Posts: 12
Joined: Thu Sep 16, 2010 10:42 pm

How to check if all DataStage Services are running

Post by deps1972 »

Hello everyone

Which process/processes on red Hat Linux I should be checking to make sure all three data stage tiers are up and running?

Thanks in advance
dj
PaulVL
Premium Member
Premium Member
Posts: 1315
Joined: Fri Dec 17, 2010 4:36 pm

Post by PaulVL »

Why not create a job that executes every 10 mins to validate that your install is functional?

RowGen->Peek

We kick ours off via a CRON job. We actually kick two of them off (time delay between both). We page out our team should it fail.

That would allow you to truely validate your environment can run a simple job, (it's not meant to be a deep dive total validation of all of your components.)
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

serverStatus.sh for the WebSphere Application Server process server1
netstat for the ASBNode and Logging agents, specifying in a following grep the port numbers that you has ascribed to these (probably 31531 and 31533).

netstat also for the dsrpcd daemon, again specifying the port number that you have ascribed to it (probably 31538).

There are a few optional processes as well, such as JobMonApp. Similar techniques can be used for these, or ps -ef and grep for the service name.
Last edited by ray.wurlod on Wed Nov 28, 2012 3:20 pm, edited 1 time in total.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
nagarjuna
Premium Member
Premium Member
Posts: 533
Joined: Fri Jun 27, 2008 9:11 pm
Location: Chicago

Post by nagarjuna »

grep for websphere , asbnode , listen , jobmonapp , logging.agent , dsrpc for checking imp processes on server
Nag
deps1972
Premium Member
Premium Member
Posts: 12
Joined: Thu Sep 16, 2010 10:42 pm

Post by deps1972 »

Hi Ray

What would be the service names I should be looking for ?

Regards
dj
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Why? If the port number is in use, the appropriate service is running.

The mandatory ones are
  • server1
    ASBagent
    LoggingAgent
    dsrpcd
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
deps1972
Premium Member
Premium Member
Posts: 12
Joined: Thu Sep 16, 2010 10:42 pm

Post by deps1972 »

Thanks Ray
dj
Post Reply