Linux开启ssh服务

    今天在用secureCRT连接ubutun的时候提示:The remote system refused the connection.

    原因是ubuntu上并没有安装SSH服务。需要进行以下操作:

 

    Linux开启ssh服务

  1. 首先更新源  
    sudo apt-get update
  2. 安装ssh服务
    sudo apt-get install openssh-server
  3. 检测是否已启动
    ps -e | grep ssh

    看到有ssh字样,说明已启动,如果没有就手动启动

    /etc/init.d/ssh start
  4. 配置ssh-server,配置文件位于/etc/ssh/sshd_config,默认端口为22,为了安全,一般自定义为其他端口,然后重启
    sudo /etc/init.d/ssh resart

    然后在windows中,使用secureCRT等登录虚拟机。

你可能感兴趣的:(Linux开启ssh服务)