红联Linux门户
Linux帮助

secureCRT连接ubuntu问题-The remote system refused the connec

发布时间:2015-11-14 15:18:42来源:linux网站作者:Decisiveness

解决方案:


1.安装openssh-server

Ubuntu缺省安装了openssh-client,所以在这里就不安装了,如果你的系统没有安装的话,再用sudo apt-get install openssh-server安装上即可。

1.1输入命令:sudo apt-get install openssh-server

1.2确认openssh-server是否启动了:
ps -e |grep ssh

正常情况下结果为:

1584        00:00:00 ssh-agent
2299       00:00:00 sshd

1.3如果只有ssh-agent,则openssh-server还没有启动,需要/etc/init.d/ssh start,如果看到sshd那说明openssh-server已经启动了。


2.ssh-server配置文件位于/etc/ssh/sshd_config,在这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号,如222。然后重启SSH服务:

sudo /etc/init.d/ssh restart (在Ubuntu 12.04上运行此命令会提示让你使用“sudo service ssh restart”,运行此命令即可成功)


SecureCRT连接虚拟机中的Linux系统(Ubuntu):http://www.linuxdiyf.com/linux/11806.html

如何在SecureCRT上使用公钥登陆Linux服务器?:http://www.linuxdiyf.com/linux/10310.html

SecureCRT无法正常连接Ubuntu 14.0.4.1的解决办法:http://www.linuxdiyf.com/linux/9211.html

利用SecureCRT在Linux与Windows之间传输文件:http://www.linuxdiyf.com/linux/1748.html