我是靠谱客的博主 大胆仙人掌,最近开发中收集的这篇文章主要介绍ubuntu ssh服务的安装与配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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


#:~$ ssh localhost


ssh: connect to host localhost port 22: Connection refused


如上所示,表示没有还没有安装,可以通过apt安装,命令如下:


-desktop:~$ sudo apt-get install openssh-server  


#:~$ sudo apt-get install openssh-server


系统将自动进行安装,安装完成以后,先启动服务:


@xjj-desktop:~$ sudo /etc/init.d/ssh start  


#:~$ sudo /etc/init.d/ssh start


启动后,可以通过如下命令查看服务是否正确启动


@xjj-desktop:~$ ps -e|grep ssh   


6212 ?        00:00:00 sshd  


#:~$ ps -e|grep ssh 6212 ? 00:00:00 sshd


如上表示启动ok。注意,ssh默认的端口是22,可以更改端口,更改后先stop,


然后start就可以了。改配置在/etc/ssh/sshd_config下,如下所示。


#:~$ vi /etc/ssh/sshd_config   


# Package generated configuration file   


# See the sshd(8) manpage for details   


# What ports, IPs and protocols we listen for  


Port 22  


# Package generated configuration file


# See the sshd(8) manpage for details


# What ports, IPs and protocols we listen for


Port 22


最后,应该是连接的时候了。请看如下命令:


#:~$ ssh exceljava@192.168.158.129  


#:~$ vi /etc/ssh/sshd_config

最后

以上就是大胆仙人掌为你收集整理的ubuntu ssh服务的安装与配置的全部内容,希望文章能够帮你解决ubuntu ssh服务的安装与配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部