Linux在服务器启用公钥认证

首先在编辑文件下找出etc文件包打开etc文件包

在etc文件下找出ssh文件,然后打开ssh文件包

在ssh文件包中找出sshd_config文件

打开sshd_config文件

找到 “PasswordAuthentication  yes”命令,并且将其改为

“PasswordAuthentication  no”

修改完配置文件/etc/ssh/sshd_config 在服务器启用公钥认证后,不要忘记重新启动SSH服务使用的配置生效。

[root@localhost~]# /etc/init.d/sshd restrt

重新启动ssh。