mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-13 18:17:07 +02:00
added comments about SELinux and firewall for CentOS/RHEL 7
@ -80,6 +80,18 @@ zypper update
|
|||||||
# RHEL or CentOS 7
|
# RHEL or CentOS 7
|
||||||
> If you have automatic updates enabled or run ```yum update``` manually, the update to 19.1 will happen automatic!
|
> If you have automatic updates enabled or run ```yum update``` manually, the update to 19.1 will happen automatic!
|
||||||
|
|
||||||
|
> RHEL/CentOS 7 have SELinux enabled by default, which stops MariaDB/MySQL socket bind-mounted into the container from working. **You currently need to switch SELinux off in order to use EGroupware!**
|
||||||
|
> To do so temporary run ```setenforce 0``` to permanently switch it off edit /etc/sysconfig/selinux, set ```SELINUX=disabled``` and reboot.
|
||||||
|
|
||||||
|
> RHEL/CentOS 7 has a firewall enabled by default which do NOT allow to access the webserver!
|
||||||
|
|
||||||
|
To enable http(s) access in the default firewall run the following commands:
|
||||||
|
```
|
||||||
|
firewall-cmd --add-service=http --permanent
|
||||||
|
firewall-cmd --add-service=https --permanent
|
||||||
|
firewall-cmd --reload
|
||||||
|
```
|
||||||
|
|
||||||
For new installations or updating from EPL you need to add our server:eGroupWare repo first:
|
For new installations or updating from EPL you need to add our server:eGroupWare repo first:
|
||||||
```
|
```
|
||||||
cd /etc/yum.repos.d/
|
cd /etc/yum.repos.d/
|
||||||
|
Reference in New Issue
Block a user