本文主要是介绍centos如何安装ssh?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
centos如何安装ssh?
原创2020-07-28 11:45:1510810 关注公众号:每天精选资源文章推送
centos安装ssh的方法:首先安装【openssh-server】;然后修改配置文件,并启动ssh的服务;接着设置开机自动启动;最后设置文件夹【~/.ssh】的访问权限即可。
centos安装ssh的方法:
1. 安装openssh-server
1
|
yum install -y openssl openssh-server
|
2. 修改配置文件
用vim打开配置文件/etc/ssh/sshd_config
将上图的PermitRootLogin
,RSAAuthentication
,PubkeyAuthentication
的设置打开。
3、启动ssh的服务:
1
|
systemctl start sshd.service
|
4、设置开机自动启动ssh服务
1
|
systemctl enable sshd.service
|
5、设置文件夹~/.ssh
的访问权限:
1
2
3
4
5
6
7
8
9
10
|
$ 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
文件存储的是客户端的公共密钥。
这篇关于centos如何安装ssh?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!