ubuntu 禁用密码登录

ubuntu 禁用密码登录

禁止密码登陆

  1. 修改配置文件
1
2
3
4
5
6
vim /etc/ssh/sshd_config
# PasswordAuthentication  yes
PubkeyAuthentication yes
修改为
PasswordAuthentication  no
PubkeyAuthentication yes
  1. 重启ssh服务
1
service ssh reload