Ubuntu安装SSH并启用root用户远程登录

前端之家收集整理的这篇文章主要介绍了Ubuntu安装SSH并启用root用户远程登录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Ubuntu安装SSH并启用root用户远程登录

1. 安装ssh

默认不会安装ssh,所以需要手动安装

sudo apt-get install openssh-server openssh-client

安装完成后需要重启ssh

sudo /etc/init.d/ssh restart

2. 配置root用户远程登录

完成后发现使用ssh连接工具并不能连接上,需要我们更改配置文件

vim /etc/ssh/sshd_config

修改其中的PermitRootLogi为yes

# Authentication:
LoginGraceTime 120
#PermitRootLogin prohibit-password
PermitRootLogin yes
StrictModes yes
原文链接:https://www.f2er.com/ubuntu/349699.html

猜你在找的Ubuntu相关文章