How to check whether some services are running in another
server or not?
Suppose i am currently in a server named A.I want to check
whether some services are running in server B without
logging into the server B.

Answer Posted / rohit kumar

Assuming that server A is reachable from server B and vice
versa:

We can execute the command remotely using rsh and by using
admin credentials of server B as below from server A:

rsh <server B IP> -l <admin login name> -n "ps -eaf | grep -
i <service_name>"

For eg; to find httpd service we can use the following
command assuming server B IP is 10.0.0.10 and root has
admin previledges:

rsh 10.0.0.10 -l root -n "ps -eaf | grep -i httpd"

Is This Answer Correct ?    19 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are some command words?

670


What is difference between grep and find command in unix?

668


What is the pipe command?

680


Describe the usage and functionality of the command rm –r * in unix?

921


What is grep and how do you use it?

661






Which command is used to create a directory?

660


What does grep v grep do?

637


Which command is used to restrict incoming messages?

675


Explain command to display different lines that are found when compare two files?

764


Which command is used to find whether the system is 32 bit or 64 bit?

715


What is the difference between cat and more command?

759


why metadb requires a seperate slice to create Solaris volume manager

2654


What is grep command in unix with examples?

685


What is the difference between awk and grep?

631


Write a command to kill the last background job?

702