当前位置:首页 » 《资源分享》 » 正文

Ubuntu24.04 安装ssh开启22端口及允许root用户远程登录

14 人参与  2024年11月02日 09:20  分类 : 《资源分享》  评论

点击全文阅读


1、安装openssh-server插件开启22端口访问

# 安装ssh会默认启动服务并开启22端口apt updateapt install openssh-server

 2、开启root用户远程访问

激活root用户,设置root用户登录密码
hunter@localhost:/$ sudo passwd rootNew password: Retype new password: 
 修改配置

找到配置文件/etc/ssh/sshd_config,打开注释 #PermitRootLogin prohibit-password,并修改为

PermitRootLogin yes

hunter@hunter-SER:/$ cat /etc/ssh/sshd_config......#LoginGraceTime 2m#PermitRootLogin prohibit-passwordPermitRootLogin yes#StrictModes yes#MaxAuthTries 6#MaxSessions 10......

3、重启 ssh 服务

service ssh restart


点击全文阅读


本文链接:http://zhangshiyu.com/post/181288.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1