daemons - Remote process control in Linux -
i'm working on project requiring number of processes running under control of "master" process, receives remote commands via tcp , tells child processes (e.g.: files should act on, processing operations should perform).
i've come following ideas pass commands/configuration down child processes:
- signals (not powerful enough)
- a binary protocol on sockets or pipes connecting each process master (reinvent wheel).
- rpc (maybe overkill)
- corba (perhaps overkill)
- dds (totally overkill)
any ideas/suggestions?
Comments
Post a Comment