I configured a cluster using torque pbs with 2 compute node and 1 head node. I submitted job using qsub command like qsub myscript.sh
myscript.sh contains some shell code . This script is executed successfully in any compute node and result i got in terms of some out put file. This type of job submission and execution is very easy. But i facing lot of problem with the following ...
I have a network packet capturing module written in C with libpcap dependency . My requirement is like that. I want to submit this programme to to different compute node(computenode-0-0, computenode-0-1). So that what ever all packet is coming to head node those packet will be processed by my programme which is running in the compute node.
How will I submit the C program? How load balancing will be done in compute node? What are the additional configuration I have to do in cluster?