Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Linux in General => Linux Development & Programming => Topic started by: zaheer031 on November 04, 2004, 06:11:50 AM

Title: Sending signal from one process to other
Post by: zaheer031 on November 04, 2004, 06:11:50 AM
HI,

Can I send signal from one process to other ,both running on different hosts . If yes
then how do I proceed.


Regards
Title: Sending signal from one process to other
Post by: ZeCougar on May 04, 2005, 09:26:17 AM
zaheer, i'll outline the general funda of how this would be done.

The main problem here is that the processes are on different hosts.

So basically this boils down to 2 problems

1. sending a message from one host to another. you would want to use one of the protocols to do this TCP / IP / Telnet etc.

2. The process should pick up the message. this would be donw by listening to a socket.

wish i could give you more details, but i guess this will help you in the approach