请注意,本文编写于 2161 天前,最后修改于 1039 天前,其中某些信息可能已经过时。
服务器配置
1 登录到服务器修改sshd的配置文件
vim /etc/ssh/sshd_config
找到以下内容,去掉前面的注释(#)
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
重启sshd服务
service sshd restart
本机配置
1 本机生成公钥和私钥(已生成跳过)
ssh-keygen -t rsa
一路回车即可。默认在 ~/.ssh目录生成两个文件
id_rsa :私钥
id_rsa.pub :公钥
2 将本地公钥导入到服务器认证文件中
ssh-copy-id -i ~/.ssh/id_rsa.pub root@你的公网IP
3 修改 mac 下的配置文件 ~/.ssh/config (没有则创建)
Host aliyun ### 别名
Hostname 192.168.10.10 ###公网 IP
Port 22 ###端口
User root ###登录账号
IdentityFile ~/.ssh/id_rsa ###本机私钥地址
4 使用ssh连接
ssh aliyun