在CentOS7中安装和配置ssh
程序员文章站
2022-03-02 09:58:12
1. 安装openssh-serveryum install -y openssl openssh-server2. 修改配置文件用vim打开配置文件/etc/ssh/sshd_config将上图的p...
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
authorized_keys
文件存储的是客户端的公共密钥
。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
在Linux下配置和安装Domino 服务器的问题
-
在Linux中安装配置和加载Florence屏幕键盘
-
jdk在centos中安装配置图文教程
-
Windows 2016 & Windows 10 中IIS安装和配置PHP的步骤
-
centos7 mysql数据库安装和配置
-
在Linux上怎么安装和配置DenyHosts工具以便进行自动屏ip
-
PHP pthreads v3在centos7平台下的安装与配置操作方法
-
Linux CentOS7系统中mysql8安装配置
-
【DevOps】在CentOS中安装Rancher2,并配置kubernetes集群
-
Jira7.10.1在Windows环境下的安装和配置教程图解