useradd

作者: Carlos小栈 | 来源:发表于2019-06-10 01:24 被阅读0次

    添加用户

    useradd mofan -m -s /bin/bash
    su mofan
    cd
    mkdir .ssh
    cd .ssh
    vi authorized_keys
    
    usermod -a -G sudo mofan
    

    sudo 免密码

    参考链接

    visudo
    mofan ALL=(ALL) NOPASSWD: ALL
    
    %sudo ALL=(ALL:ALL) NOPASSWD:ALL
    

    禁止密码登录

    vi /etc/ssh/sshd_config
    PasswordAuthentication no
    

    禁止root 登录

    vi /etc/ssh/sshd_config
    PermitRootLogin no
    

    只允许指定用户登录

    vi /etc/ssh/sshd_config
    AllowUsers mofan
    

    重启sshd

    service sshd restart
    

    相关文章

      网友评论

          本文标题:useradd

          本文链接:https://www.haomeiwen.com/subject/wtaoxctx.html