系统相关
首页 > 系统相关> > Ubuntu启动SSH远程管理功能

Ubuntu启动SSH远程管理功能

作者:互联网

运用SSH功能远程管理Linux

  1. 安装openssh-server

    sudo apt update
    
    sudo apt install openssh-server
    
  2. SSH的启动、关闭、状态命令
    一般情况下安装openssh-server后会自动打开SSH
    启动命令

    sudo systemctl start ssh
    

    关闭命令

    sudo systemctl stop ssh
    

    状态命令

    sudo systemctl status ssh
    
  3. UFW的防火墙配置工具打开SSH端口

    sudo ufw allow ssh
    

成功开启SSH服务,利用Putty软件实现远程管理Linux

标签:openssh,sudo,systemctl,ssh,远程管理,Ubuntu,SSH
来源: https://blog.csdn.net/Jarsionge_Chen/article/details/122069714