美文网首页
Linux 服务器安全1,2,3

Linux 服务器安全1,2,3

作者: Ze_phyr | 来源:发表于2017-12-18 11:28 被阅读13次

    一、创建一个受限的账户,而不是使用root(拥有linux无上的权限)管理服务器

    useradd username;passwd username;usermod -aG wheel username

    新账户登录服务器,当需要使用管理命令:sudo COMMAND

    二、使用密钥登录服务器,而不是密码

    ssh-keygen 生成密钥对;

    ssh-copy-id username@remote ip 将生成的公钥安装到远程计算机上

    三、ssh作为服务器的入口,加以保护吧

    使用Fail2ban过滤无效的登录尝试,

    yum install fail2ban;cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local;vim jail.local

    相关文章

      网友评论

          本文标题:Linux 服务器安全1,2,3

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