在CentOS7中安装和配置ssh 1. 安装openssh-server
yum install -y openssl openssh-server
2. 修改配置⽂件
⽤vim打开配置⽂件/etc/ssh/sshd_config
将上图的PermitRootLogin,RSAAuthentication,PubkeyAuthentication的设置打开。
启动ssh的服务:
systemctl start sshd.service
设置开机⾃动启动ssh服务
systemctl enable sshd.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-------. 1 root root  403 May 15 00:22 authorized_keys
-rw-------. 1 root root 1766 May 15 00:21 id_rsa
-rw-------. 1 root root  403 May 15 00:21 id_rsa.pub
centos vim命令
authorized_keys⽂件存储的是客户端的公共密钥。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。