-
-
Notifications
You must be signed in to change notification settings - Fork 3
Set up SEL #242
Copy link
Copy link
Open
Labels
administrationThis ticket addresses server maintenance and changes.This ticket addresses server maintenance and changes.securityThis ticket addresses the security of the project.This ticket addresses the security of the project.
Metadata
Metadata
Assignees
Labels
administrationThis ticket addresses server maintenance and changes.This ticket addresses server maintenance and changes.securityThis ticket addresses the security of the project.This ticket addresses the security of the project.
It would enhance server security if SEL were configured. Currently, it is disabled, and as found in #241, enabling it breaks the webserver.
SEL is toggled at the kernel commandline; the options are
selinux=1for "enabled" andselinux=0for "disabled".Enforcement is enabled with
enforcing=1or disabled withenforcing=0.These are set and removed by calling
grubby:grubby --update-kernel=ALL --args="selinux=1"/grubby --update-kernel=ALL --remove-args="selinux=0".You can see what your current options are with
grubby --info=ALL | grep args, and you can see what you're currently running withcat /proc/cmdline.