1. 安装openssh-server
yum install -y openssl openssh-server
2. 修改配置文件
用vim打开配置文件/etc/ssh/sshd_config
将上图的PermitRootLogin,RSAAuthentication,PubkeyAuthentication的设置打开。
启动ssh的服务:
systemctlstartsshd.service
设置开机自动启动ssh服务
systemctlenablesshd.service
设置文件夹~/.ssh的访问权限:
$cd~$ chmod 700 .ssh
$ chmod 600 .ssh/*
$ ls -la .ssh
total 16
drwx------. 2 root root 58 May 15 00:23 .
dr-xr-x---. 8 root root 4096 May 15 00:26 ..
-rw-------.1root root403May1500:22authorized_keys
-rw-------.1root root1766May1500:21id_rsa
-rw-------.1root root403May1500:21 id_rsa.pub
authorized_keys文件存储的是客户端的公共密钥。
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
作者:刘帅
链接:https://www.cnblogs.com/liuhouhou/p/8975812.html
来源:cnblogs
著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
网友评论