linux 创建用户并禁用远程root用户登录


添加用户
useradd 用户
给添加的用户设置密码
passwd 用户
编辑ssh配置文件禁用 root用户远程登录
vi /etc/ssh/sshd_config
找到PermitRootLogin yes
修改为PermitRootLogin no
重启ssh
/etc/init.d/ssh restart
        

标签: none


添加新评论