Linux 怎样禁止root登录 首先设置一个普通的登录用户然后修改配置文件sshd_config最后重启ssh服务 首先设置一个普通的登录用户 useradd testuser passwd testpasswd 然后修改配置文件sshd_config #LoginGraceTime 2m #将PermitRootLogin 后面的值修改为no PermitRootLogin no #StrictModes yes #最大尝试登录次数 MaxAuthTries 3 #MaxSessions 10 最后重启ssh服务 systemctl restart sshd.service #登录普通账户时,使用su或者sudo命令即可切换root账户