Chinaunix首页 | 论坛 | 博客
  • 博客访问: 64568
  • 博文数量: 15
  • 博客积分: 226
  • 博客等级: 二等列兵
  • 技术积分: 145
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-20 22:37
文章分类
文章存档

2012年(4)

2011年(11)

我的朋友

分类: LINUX

2011-08-30 22:31:48

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

代码
  1. $ ssh localhost   
  2. ssh: connect to host localhost port 22: Connection refused   
$ ssh localhost ssh: connect to host localhost port 22: Connection refused

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

代码
  1. $ sudo apt-get install openssh-server  
$ sudo apt-get install openssh-server

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

代码
  1. $ sudo /etc/init.d/ssh start  
$ sudo /etc/init.d/ssh start

 

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

代码
  1. $ ps -e|grep ssh   
  2.  6212 ?        00:00:00 sshd  
$ ps -e|grep ssh 6212 ? 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  
$ 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

 


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

  代码
  1. $ ssh exceljava@192.168.158.129  
阅读(2545) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~