linux的SELinux

SELinux的工作原理
限制的是进程与文件之间的权限关系
linux的SELinux_第1张图片
selinux.png
查看SELinux的工作状态
1 sestatus -v
2 getsebool -a
3 /etc/selinux/config
设置selinux
1 setenforce 0(or setenforce 1)
2 setsebool -P httpd_can_network_connect=1
3 /etc/selinux/config(SELINUX=disabled)
www的规则放行
1 iptables的放行
2 SELinux的放行:
    getsebool -a | grep httpd
    setsebool -P httpd_can_network_connect=1
    restorecon -Rv /var/www/html,恢复缺省的context

你可能感兴趣的:(linux的SELinux)