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
Is it inbetween or in between?
What is the command to find maximum memory taking process on the server?
How do I search a whole word in vim?
How many unix commands are there?
What is grep short for?
Explain ‘system calls’ with respect to unix commands?
What is the functionality of a top command?
What does find command return in unix?
Describe the zip/unzip command using gzip.
Differentiate cat command from more command.
What is the difference between grep and grep?
What are awk commands?
Is there a way to erase all files in the current directory, including all its sub-directories, using only one command?
How do I search for a file in unix command?
What are the dos commands?