sh 公钥ssh到MPI服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 公钥ssh到MPI服务器相关的知识,希望对你有一定的参考价值。

# 1) re-download key
ssh-copy-id login.mpi-bremen.de

# or

ssh-copy-id -i ~/.ssh/id_rsa.pub mschecht@194.95.6.13

# 2) I think this applies the public keys to all the connections in the server.
ssh login.mpi-bremen.de

# 3) Now try to connect
ssh sunray-1.mpi-bremen.de

# Copy of .ssh/config file for MPI public key stuff
StrictHostKeyChecking no

AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_rsa


Host loginmpi
    User mschecht
    Hostname login.mpi-bremen.de
    PreferredAuthentications publickey

Host *.mpi-bremen.de
User mschecht
Hostname %h
ForwardAgent yes
Port 22
ProxyCommand ssh loginmpi nc %h %p

以上是关于sh 公钥ssh到MPI服务器的主要内容,如果未能解决你的问题,请参考以下文章

sh SSH - 将公钥从本地复制到服务器 - https://goo.gl/Ccaafo

sh 将ssh公钥复制到剪贴板

sh 获取SSH公钥指纹

sh 查看您的ssh公钥的指纹

sh 检查ssh公钥

使用sshpass 和 ssh-copy-id批量拷贝公钥到远程主机