# 生成密钥,如 ~/.ssh/id_rsa 已存在,输入y覆盖,然后不要密码,直接回车。
$ ssh-keygen -t rsa
# 输入密码将公钥复制到服务器上
$ ssh-copy-id root@YOUR_IP
# 观察是否成功
$ ssh root@remoteHost
服务器端转发配置:
# 关于ssh的配置项修改
$ vi /etc/ssh/sshd_config
AllowTcpForwarding yes
# 重启ssh服务
$ systemctl restart sshd
网友评论