You will know that the install script was nsuccessful in configuring ssh on your machine to run the distributed memory binaries if the command:
% ssh `hostname` date
returns the date without having to provide a password. If not then you need to do the following:
a. % mkdir ~/.ssh - If it does not exist.
b. % ssh-keygen -t dsa -f ~/.ssh/id_dsa -N "" - Note the ""
c. % cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys2
d. % rm -f ~/.ssh/id_dsa.pub
e. % ssh-keyscan -t rsa <host name>,<ip addr> > ~/.ssh/known_hosts
f. % ssh `hostname` date
The the steps above were successful you should see the date without having to enter a password. If not the give your STRC a call. |