ssh 远程登陆 refuse

为什么80%的码农都做不了架构师?>>>   hot3.png

一般就是这几个原因:

1.sshd 未安装

2.sshd 未启动

3.防火墙


对应的解决方案:

1.安装sshd:

$ sudo apt-get install openssh-server

2.启动sshd:

$ sudo net start sshd

3.检查防火墙设置,关闭防火墙:

$ sudo ufw disable

检验:

ssh localhost


然后问题就解决了哈


来自:http://www.xuebuyuan.com/733655.html

转载于:https://my.oschina.net/michao/blog/618180

你可能感兴趣的:(ssh 远程登陆 refuse)