服务器操作系统:Ubuntu 14.04 LTS x64
1、修改配置
vim /etc/ssh/sshd_config
将 PasswordAuthentication 设置为 no
2、重启SSH服务
service ssh restart
之后就只能使用私钥登录了。没有私钥登录会提示:Permission Denied (publickey).
顺便提一下快速把自己公钥添加到服务器的方法,使用 ssh-copy-id + host
命令可以将当前电脑上的公钥快速添加到服务器。