红联Linux门户
Linux帮助

Ubuntu下开启SSH服务

发布时间:2015-08-27 21:38:35来源:linux网站作者:TheOneGIS

在VMware WorkStation下,安装了Ubuntu,然后在Windows桌面使用XManager的XShell连接我的Ubuntu,可是同时提示连接失败。

然后我用Windows的CMD命令提示符Ping了一下Ubuntu的IP,结果连接正常,为什么使用XShell会连接不上了,所以我猜猜是Ubuntu默认没有开启SSH服务。


SSH分客户端openssh-client和服务端openssh-server。
如果你只是想登陆别的机器的SSH只需要安装openssh-client(Ubutntu有默认安装,如果没有则sudo apt-get install openssh-client),如果要使本机开放SSH服务就需要安装openssh-server。

我这里使用命令sudo apt-get install openssh-server安装服务端SSH。


然后使用命令确认sshserver是否启动了:ps -e |grep ssh

如果看到sshd那说明ssh-server已经启动了。

如果没有则可以这样启动:sudo /etc/init.d/ssh start
ssh-server配置文件位于/ etc/ssh/sshd_config,在这里可以定义SSH的服务端口,默认端口是22。


然后重启SSH服务:
sudo /etc/init.d/ssh stop
sudo /etc/init.d/ssh start


Ubuntu中启用ssh服务:http://www.linuxdiyf.com/linux/12141.html

开启ubuntu系统的ssh服务:http://www.linuxdiyf.com/linux/11909.html

Ubuntu 14.04下安装Samba及SSH服务端的方法:http://www.linuxdiyf.com/linux/10215.html

开启SSH服务让Android手机远程访问Ubuntu 14.04:http://www.linuxdiyf.com/linux/2601.html

Ubuntu下配置SSH服务以及SecureCRT工具的使用:http://www.linuxdiyf.com/linux/3995.html