rsh has fallen out of favour due to the use of plaintext passwords for logging in over the network. Does mpirun support other methods like ssh?
If you really have to, you can install the rsh client and install the rsh service, usually running under xinetd. It’s been a while since I used rsh so I’m not sure if there are any quirks now. And please only do this on a private LAN with no untrusted users.
You’re using HP MPI, you can try the following before exectuing your fluent run:
export MPI_REMSH=ssh
I personally haven’t tried it, so I’m not sure how it handles a case where your keys aren’t set up properly.
If you are only going to run locally, which appears to be what you’re doing, you could use yast to install rsh, then ‘chkconfig rsh on’, ‘ckhconfig xinetd on’ and add the following to your /etc/hosts.equiv:
localhost
yourhostname
This will allow your machine to trust rsh from itself only. This is what I did for my own MPI development work.