Home  >  Article  >  Operation and Maintenance  >  How to prevent root users from logging in directly in centos

How to prevent root users from logging in directly in centos

王林
王林Original
2020-05-23 11:45:202344browse

How to prevent root users from logging in directly in centos

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

vim /etc/ssh/sshd_config

Find the configuration

#PermitRootLogin yes

Modify it to

PermitRootLogin no

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

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!

Statement:
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