如何在 Ubuntu Hardy 上禁止使用密码?
我将在 EC2 上使用 Ubuntu 实例,其中不使用密码,但使用私钥通过 ssh 登录。
感谢帮助。
答案1
将 /etc/ssh/sshd_config 中的 PasswordAuthentication 行更改为 no:
老的:
#PasswordAuthentication yes
新的:
PasswordAuthentication no
并重新启动 sshd:
/etc/init.d/sshd restart
你现在可以走了。