Difference between revisions of "SELinux"
(save) |
(c/e) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 16: | Line 16: | ||
</pre> |
</pre> |
||
− | After running this |
+ | After running this command you'll need to restore contexts if you have not already done so: |
<pre> |
<pre> |
||
sudo restorecon -vFR /opt |
sudo restorecon -vFR /opt |
||
+ | </pre> |
||
+ | |||
+ | == Sendmail == |
||
+ | If you want to allow httpd to send email via sendmail then you have to enable that boolean: |
||
+ | |||
+ | <pre> |
||
+ | sudo setsebool -P httpd_can_sendmail 1 |
||
</pre> |
</pre> |
||
== LaTeX == |
== LaTeX == |
||
− | + | Rendering problems as images relies on the pdftex binary (invoked by httpd) accessing the texmf libraries. Some SELinux environments [https://bugzilla.redhat.com/show_bug.cgi?id=733545 don't allow this by default] and you may see messages like the following: |
|
<pre> |
<pre> |
||
Line 57: | Line 64: | ||
== Links == |
== Links == |
||
* [http://selinuxproject.org/page/Main_Page SELinux] |
* [http://selinuxproject.org/page/Main_Page SELinux] |
||
+ | |||
+ | [[Category:Installation Manuals]] [[Category:Administrators]] |
Latest revision as of 09:18, 1 April 2019
This page explains how to get WeBWorK running in an SELinux environment. It assumes a basic familiarity with SELinux, WeBWork, and Apache.
Contents
Document root
The internal webwork structure will need the following contexts set (assuming you're installing within /opt):
sudo semanage fcontext -a -t httpd_sys_content_t '/opt/webwork(/.*)?' sudo semanage fcontext -a -t httpd_sys_rw_content_t '/opt/webwork/courses(/.*)?' sudo semanage fcontext -a -t httpd_sys_rw_content_t '/opt/webwork/webwork2/tmp(/.*)?'
If /opt isn't normally used to host web applications, you may need to change its context as well (just the top-level, not including sub-directories):
sudo semanage fcontext -a -t httpd_sys_content_t '/opt'
After running this command you'll need to restore contexts if you have not already done so:
sudo restorecon -vFR /opt
Sendmail
If you want to allow httpd to send email via sendmail then you have to enable that boolean:
sudo setsebool -P httpd_can_sendmail 1
LaTeX
Rendering problems as images relies on the pdftex binary (invoked by httpd) accessing the texmf libraries. Some SELinux environments don't allow this by default and you may see messages like the following:
SELinux is preventing /usr/bin/pdftex from search access on the directory /var/lib/texmf/web2c/pdftex
You can fix this by creating a policy to allow this access:
module webwork 1.2; require { type file_t; type httpd_t; type tetex_data_t; class dir { search getattr }; class file { read getattr open }; } #============= httpd_t ============== allow httpd_t file_t:dir { search getattr }; allow httpd_t tetex_data_t:dir { search getattr }; allow httpd_t tetex_data_t:file { read getattr open };
Follow these steps to create and install a policy:
- Copy the above into
webwork.te
and save. sudo checkmodule -M -m -o webwork.mod webwork.te
sudo semodule_package -o webwork.pp -m webwork.mod
sudo semodule -i webwork.pp