欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-06-05 17:27:25
...

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