Page 1 of 1

dsprcd status

Posted: Wed Jun 24, 2009 4:34 pm
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.

Posted: Wed Jun 24, 2009 4:41 pm
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.

Posted: Wed Jun 24, 2009 6:12 pm
by Elozm
Thanks for your quick response Craig. I'll check it.

Posted: Wed Jun 24, 2009 8:37 pm
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

Posted: Mon Jun 29, 2009 3:38 pm
by Elozm
Thanks Man!

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

E