远程连接Linux系统出现Network error: Connection refused
2021-01-07 01:30
标签:code erro 系统 alt enable system art nec window 远程连接Linux系统出现Network error: Connection refused 标签:code erro 系统 alt enable system art nec window 原文地址:https://www.cnblogs.com/x991788x/p/13579664.html出现这个错误一般是sshd服务没有开启
(sshd服务是linux下的远程连接服务,默认端口号为22)
首先查看ssh服务是否安装在服务器上:rpm -qa|grep ssh
如果安装了可以在虚拟机查看sshd服务是否开启:systemctl status sshd.service
如果没有开启就可以启动:systemctl start sshd.service
并设置为开机启动:systemctl enable sshd.service
查看ssh使用的22端口有没有被enable:netstat -an|grep 22
补充:windows系统的远程连接服务端口号为3389
上一篇:web的八大监听器
下一篇:快速了解Kubernetes
文章标题:远程连接Linux系统出现Network error: Connection refused
文章链接:http://soscw.com/index.php/essay/40603.html