1、查看是否已安装openssh-server:
[root@localhost ~]# yum list installed | grep openssh-server
如果有信息说明已安装了openssh-server,如果输出没有任何结果,说明没有安装。
2、安装openssh-server(如果已安装,此处省略):
[root@localhost ~]# yum install openssh-server
3、编辑sshd_config:
[root@localhost ~]# vim /etc/ssh/sshd_config
放开端口以及监听地址,去掉#,如下图。
允许使用Root登录,如下图:
放开密码权限,如下图:
4、开启sshd服务:
[root@localhost ~]# sudo service sshd start
查询 sshd 服务窗台:文章来源:https://www.toymoban.com/news/detail-575993.html
[root@localhost ~]# ps -e | grep sshd
查询22端口是否已开启:文章来源地址https://www.toymoban.com/news/detail-575993.html
[root@localhost ~]# netstat -an | grep 22
5、设置开机启动:
[root@localhost ~]# systemctl enable sshd.service
6、查询当前系统的网络连接情况:
[root@localhost ~]# ifconfig
到了这里,关于Centos7开启SSH连接配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!