美文网首页
本地连远程配置——jupyter、ssh

本地连远程配置——jupyter、ssh

作者: 小石头在长大 | 来源:发表于2019-08-06 19:30 被阅读0次

jupyter配置

https://blog.csdn.net/qq_18293213/article/details/72910834

ssh免密登陆配置:

本地配置:/.ssh/config

Host shigu2 

HostName 10.1.2.35

User ubuntu

Port 22

远程计算机配置:本地生成的公钥key传入到远程/.ssh/authorized_keys

修改

文件权限配置:chmod 644 config 或 chmod 600 config

/etc/ssh/sshd_config

RSAAuthentication yes

PubkeyAuthentication yes

PasswordAuthentication yes

修改完后重启:service ssh restart

修改完后,rz功能不能用了,采用scp传输文件:

https://blog.csdn.net/ludongdong/article/details/78524653

相关文章

网友评论

      本文标题:本地连远程配置——jupyter、ssh

      本文链接:https://www.haomeiwen.com/subject/sktgdctx.html