码迷,mamicode.com
首页 > 系统相关 > 详细

配置SSH Secure Shell Client连接Linux

时间:2015-04-22 17:44:28      阅读:627      评论:0      收藏:0      [点我收藏+]

标签:

前提

  通常,我们在Windows开发是需要远程登录到Linux,常用的远程登录工具有SSH(SSH Secure Shell Client)和SecureCRT等,其中SSH Secure Shell Client免费,推荐使用。

  使用SSH(SSH Secure Shell Client)远程登录Linux需要在Linux上安装支持SSH2协议。

  在Linux上没安装SSH协议之前,用SSH Secure Shell Client远程登录会提如下:

    技术分享

在Linux上安装SSH协议

  本次使用的Linux版本是CentOS6.x,使用rpm和yum作为软件管理工具

  1.查看Linux是否有SSH服务

    [root@localhost ~]# rpm -qa | grep ssh  

  2.安装SSH服务

    [root@localhost ~]# yum install openssh-server

  3.启动SSH服务

    这样我们就开启了SSH服务,sshd是SSH服务的ID

    [root@localhost ~]# service sshd start

  4.配置SSH服务开机启动

    安装完openssh-server后,默认是开机启动的,如果发现开机时未启动SSH服务,可使用该命令设置,on为开启,off为关闭

    [root@localhost ~]# chkconfig sshd on

  这样我们就完成了SSH服务的安装,然后就可以欢快的使用各种客户端远程登录到Linux工作了。

    技术分享

 

  

配置SSH Secure Shell Client连接Linux

标签:

原文地址:http://www.cnblogs.com/thomson/p/4447926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!