To conduct a quick test,
# ssh -v remote-hostyou will see an errors similar to such as those below:
debug1: Unspecified GSS failure. Minor code may provide more information Unknown code krb5 195OR
debug1: Miscellaneous failure No credentials cache foundTo reinstate the password-less access to compute nodes, you have to do the following. First thing first, please do backup files at your ~/.ssh/
Step 1: Regenerate the SSH keys
Auto SSH Login without Password
Step 2: Append the public keys ~/.ssh/id_rsa.pub and put into the ~/.ssh/authorized_keys
# cd ~/.ssh/
# cat id_rsa.pub >> authorized_keys
# chmod 400 /home/myuser/.ssh/authorized_keys
Step 3: Try ssh into the compute nodes. It should be clear password-less access to all nodes.
No comments:
Post a Comment