How to prevent root users from logging in directly in centos

王林
Release: 2020-05-23 11:45:20
Original
2424 people have browsed it

How to prevent root users from logging in directly in centos

First open the /etc/ssh/sshd.config file

vim /etc/ssh/sshd_config
Copy after login

Find the configuration

#PermitRootLogin yes
Copy after login

Modify it to

PermitRootLogin no
Copy after login

As shown in the figure below:

How to prevent root users from logging in directly in centos

Restart the sshd service, the command is as follows:

systemctl restart sshd.service
Copy after login

How to prevent root users from logging in directly in centos

Recommended tutorial:centos tutorial

The above is the detailed content of How to prevent root users from logging in directly in centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template