1、首先需要修改一些配置文件

[root@sf-gz-test-11-175 ~]# vim /etc/ssh/sshd_config

2、进入sshd_config文件后需要更改几个地方

**
RSAAuthentication yes #
PubkeyAuthentication yes #
AuthorizedKeysFile /home/tomcat/.ssh/authorized_keys #路径
ChallengeResponseAuthentication no
PasswordAuthentication no #密码登录不允许
UsePAM no
PermitRootLogin no #不允许root远程登录
##重启服务