开启 SSH

使用 SSH 免密登录

本机:

  1. 使用ssh-keygen生成 SSH 公钥
  2. 查看公钥cat ~/.ssh/id_rsa.pub

服务器:

  1. 新建文件夹
1
mkdir /root/.ssh
  1. 写入本机的 SSH 公钥
1
vim /root/.ssh/authorized_keys
  1. 关闭密码登录
1
2
3
4
5
6
vim /etc/ssh/sshd_config

找到 PasswordAuthentication yes
改成 PasswordAuthentication no

service sshd restart

测试:

1
ssh root@192.168.1.2