当前位置 主页 > 服务器问题 > Linux/apache问题 >

    ubuntu安装ssh,实现远程访问需要配置哪些

    栏目:Linux/apache问题 时间:2021-01-19 13:30

         ubuntu安装ssh实现远程访问需要配置哪些?
         一、查看是否安装了ssh服务
         apt-cache policy openssh-client openssh-server
         ubuntu默认安装了openssh-client,openssh-server需要手动安装。
         二、安装ssh服务
         apt-get install openssh-server
          三、查看ssh服务的开启状况
         ps -e|grep ssh
         如果出现sshd,则ssh服务已开启。如果只有agent,则尚未开启成功。
         四、开启ssh服务
         /etc/init.d/ssh start
         五、实现远程访问
         (1)修改配置文件
         vim /etc/ssh/sshd_config
         注释掉PermitRootLogin without-password
         紧接在下面一行添加PermitRootLogin yes
         (2)重启ssh服务
         /etc/init.d/ssh restart
         (3)查看ssh服务开启状况
         ps -e|grep ssh
         (4)利用putty实现远程访问ubuntu
         输入ip、登录名、密码实现远程访问ubuntu。