Linux/统信uos 等操作系统开启ssh

  1. 在桌面打开终端,或者直接进入终端。
  2. 输入以下命令以安装SSH服务器(如果尚未安装)统信uos,ubuntu系统
    sudo apt-get update sudo apt-get install openssh-server
  3. 如果是centos则使用下面的方式进行开启
    sudo yum install openssh-server
    

  4. 安装完成后,启动SSH服务:对于uos 或者 ubuntu系统
    centos:
    sudo systemctl start sshd
    sudo systemctl enable sshd
    
    sudo systemctl start ssh
    sudo systemctl enable ssh

  5. 确认SSH服务是否已成功启动并运行
    sudo systemctl status ssh
    

  6. 最后使用xshell进行测试即可。
  7. 如果连接不上请查看22端口是否打开
    vim /etc/ssh/ssh_config
    

你可能感兴趣的:(linux,ssh,服务器)