共计 1188 个字符,预计需要花费 3 分钟才能阅读完成。
1. 安装
Ubuntu 缺省安装了 openssh-client, 所以在这里就不安装了,如果你的系统没有安装的话,再用 apt-get 安装上即可。
安装 ssh-server
sudo apt-get install openssh-server
安装 ssh-client
sudo apt-get install openssh-client
2. 确认 sshserver 是否安装好
ps -e | grep sshd
450 ? 00:00:00 sshd
如果看到 sshd 那说明 ssh-server 已经启动了。
如果只有 ssh-agent 说明 ssh-server 还没有启动,需要执行命令启动 ssh 服务:
/etc/init.d/ssh start;
注:在 ubuntu-12.04-server-i386.iso 安装中只显示 sshd 这一项:
3. 扩展配置
SSH 默认服务端口为 22,用户可以自已定义成其他端口,如 222,需要修改的配置文件为:
/etc/ssh/sshd_config
把里面的 Port 参数修改成 222 即可
然后重启 SSH 服务:
sudo/etc/init.d/ssh restart
下面关于 SSH 相关的文章您也可能喜欢,不妨参考下:
Ubuntu 下配置 SSH 服务全过程及问题解决 http://www.linuxidc.com/Linux/2011-09/42775.htm
Ubuntu 14.04 下安装 Samba 及 SSH 服务端的方法 http://www.linuxidc.com/Linux/2015-01/111971.htm
SSH 服务远程访问 Linux 服务器登陆慢 http://www.linuxidc.com/Linux/2011-08/39742.htm
提高 Ubuntu 的 SSH 登陆认证速度的办法 http://www.linuxidc.com/Linux/2014-09/106810.htm
开启 SSH 服务让 Android 手机远程访问 Ubuntu 14.04 http://www.linuxidc.com/Linux/2014-09/106809.htm
如何为 Linux 系统中的 SSH 添加双重认证 http://www.linuxidc.com/Linux/2014-08/105998.htm
在 Linux 中为非 SSH 用户配置 SFTP 环境 http://www.linuxidc.com/Linux/2014-08/105865.htm
Linux 上 SSH 服务的配置和管理 http://www.linuxidc.com/Linux/2014-06/103627.htm
更多 Ubuntu 相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2
本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-08/121785.htm