When i use mpirun on a computing cluster with 2 nodes,i get this error:
bash: orted: command not found
ORTE was unable to reliably start one or more daemons.
-My command:
mpicc testprogram.c
mpirun -np 5 --hostfile .mpi_hostfile ./a.out
-If i run in a single node:
mpirun -np 5 --host localhost ./a.out >>> it works fine.(localhost is master,and my compile program in this node)
mpirun -np 5 --host slave ./a.out >>> still same error.
So my problem is my slave right???but how to fix it ??I have installed openmpi in slave node(but with another path-not same in master).