dsprcd status

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
Elozm
Participant
Posts: 24
Joined: Sun Nov 30, 2008 10:52 pm

dsprcd status

Post by Elozm »

Hi there,

Does anyone know how to get the dsprcd status? I want to know if the server is up.

This is on Solaris 10.

Thanks in advance.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

First thing would be to check if the process is running, typically running is a big part of "up", if server means DataStage here.

ps -ef |grep dsrpcd

Note the correct spelling.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Elozm
Participant
Posts: 24
Joined: Sun Nov 30, 2008 10:52 pm

Post by Elozm »

Thanks for your quick response Craig. I'll check it.
mandyli
Premium Member
Premium Member
Posts: 898
Joined: Wed May 26, 2004 10:45 pm
Location: Chicago

Post by mandyli »

Also you can able to check this way.

In v8.0 IIS Server followig way

Checks whether the dsrpcd Service is running or not

ps -ef | grep -i dsrpcd | grep -v "grep"
ps -ef | grep -i dsrpc | grep -v "grep"

or

netstat -a | grep dsrpc | grep LISTEN


Thanks
Man
Elozm
Participant
Posts: 24
Joined: Sun Nov 30, 2008 10:52 pm

Post by Elozm »

Thanks Man!

All this information is what I was looking for. :lol:

E
Post Reply