您的位置:首页 > 其它

Ubuntu安装使用SSH

2016-07-05 12:25 330 查看
Ubuntu安装使用SSH

ubuntu默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server。判断是否安装ssh服务,可以通过如下命令进行:

1.$ ssh localhost
2. ssh: connect to host localhost port 22: Connection refused
如上所示,表示没有还没有安装,可以通过apt安装,命令如下:
1. $ sudo apt-get install openssh-server
系统将自动进行安装,安装完成以后,先启动服务:
1. $ sudo /etc/init.d/ssh start
启动后,可以通过如下命令查看服务是否正确启动
1. $ ps -e|grep ssh
2. 29103 ?        00:00:00 sshd
如上表示启动ok。注意,ssh默认的端口是22,可以更改端口,更改后先stop,
然后start就可以了。改配置在/etc/ssh/sshd_config下,如下所示。
1. $ vi /etc/ssh/sshd_config
2. # Package generated configuration file
3. # See the sshd(8) manpage for details
4. # What ports, IPs and protocols we listen for
5. Port 22


最后,应该是连接的时候了。可以用putty等ssh客户端连接。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ubuntu apt ssh