1、首先检查是否安装ssh服务;
yum list installed | grep openssh-server
# 没有安装尝试安装下
yum install openssh-server
2、检查ssh服务是否开启
systemctl status sshd.service
# 未开启,开启下
systemctl start sshd.service
# 将sshd 服务添加至自启动列表中
systemctl enable sshd.service
# 查看是否开启了sshd 服务自启动
systemctl list-unit-files | grep sshd
一般这样,你就可以远程连接了。
若是还不行,可以做如下配置:
找到/etc/ssh/目录下的sshd服务配置文件sshd_config,用vim编辑器打开:
vim /etc/ssh/sshd_config
1)把文件中的监听号地址打开
2)允许远程控制
3)使用用户密码登录
:wq保存退出;
3.关闭防火墙
# 查看防火墙状态
systemctl status firewalld
# 关闭防火墙
systemctl stop firewalld.service
# 禁止firewall开机启动
systemctl disable firewalld.service