Ubuntu下 ssh : connect to host localhost port 22:Connection refused

Ubuntu下测试ssh时使用sshlocalhost命令,出现错误提示connecttohostlocalhostport22:Connectionrefused

造成这个错误的原因可能是ssh-server未安装或者未启动。ubuntu11.10默认安装openssh-client,但是木有安装server

运行ps-e|grepssh,查看是否有sshd进程

如果没有,说明server没启动,通过/etc/init.d/ssh-start启动server进程,如果提示ssh不存在那么就是没安装server

通过sudoapt-getinstallopenssh-server命令安装即可

ssh

相关推荐