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 / sai kiran

ex:
if u r connecting from server B to A

ssh A ls

but make sure that to create a private key for these servers

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sed awk grep?

823


What is a command and examples?

807


Differentiate cmp command from diff command.

802


What is the functionality of a top command?

834


How do I run a whois command?

827


Can you enlist some commonly used network commands?

801


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1974


What is the function of grep command in unix?

797


What is used to type command?

752


What do know about tee command?

817


What does grep v do?

765


How do I find previous commands in unix?

815


What is the use of tee command?

765


What does pipe () return?

777


What is grep command in unix with examples?

835