SSH connection refused的问题解决方法

今天在ssh连接服务器时,突然连接不上,显示为connection refused问题。找了半天解决方案,又是重启ssh又是卸载再安装,都不行,最后甚至重启了服务器。好吧``

最后还是比较了下服务器/etc/ssh/sshd_config和本地的该文件,一行一行的比较,最后将服务器端的

# For this to work you will also need host keys in /etc/ssh_known_hosts
 RhostsRSAAuthentication no
 # similar for protocol version 2
 HostbasedAuthentication no
 # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication

这里的两个yes改为同本地一致的no等。然后再重新启动一下:sudo service ssh start .再查看一下ps -ef |grep sshd 这才终于看到

一行: root ..... /usr/sbin/sshd -D


才终于解决这个问题!本地终于可以重新用ssh了!

你可能感兴趣的:(Unix,网络编程)