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

CentOS 7 禁止 root 直接登陆 及修改默认端口

程序员文章站 2022-07-07 18:33:00
...

1、新建登陆用户

useradd tom   #添加用户

passwd tom    #设置密码

2、修改 sshd 配置文件

vi /etc/ssh/sshd_config


#修改内容
PermitRootLogin no      #改成 no

Port 8222      #改端口号   

3、重启 sshd

systemctl restart sshd

4、登陆 通过  tom 账号登陆后,在切换 root

su - root