1. 安装openssh-server

yum install -y openssl openssh-server

2. 修改配置文件

用vim打开配置文件

/etc/ssh/sshd_config

将上面的PermitRootLogin、RSAAuthentication、PubkeyAuthentication的设置打开(yes)。

3、启动ssh的服务:

systemctl start sshd.service

4、设置开机自动启动ssh服务

systemctl enable sshd.service

5、设置文件夹~/.ssh的访问权限:

$ cd ~$ chmod 700 .ssh