From 13ee99b3b15a8e46f318bd5670b5951eb0377ba4 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 8 Aug 2019 19:02:24 +0200 Subject: [PATCH] Updated CentOS RedHat Installation (markdown) --- CentOS-RedHat-Installation.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CentOS-RedHat-Installation.md b/CentOS-RedHat-Installation.md index bf808b9..43cce15 100644 --- a/CentOS-RedHat-Installation.md +++ b/CentOS-RedHat-Installation.md @@ -80,12 +80,10 @@ Replace the following variables used in above urls with your own values:
CentOS_7 CentOS_6 - CentOS_5 RHEL_7 RHEL_6 - RHEL_5 @@ -137,7 +135,13 @@ from this moment on you may get logged in to your EGroupware instance via the me url in egroupware-epl.log. Although, before doing that we highly do recommend to take couple of more steps to adjust couple of settings for [PHP and MyQL](https://github.com/EGroupware/egroupware/wiki/Basic-PHP-and-MySQL-Adjustments) in order to get the best performance. **Firewall and SELinux:** -
CentOS-7 has its firewall by default on and it might restrict you to reaching your webserver. It's recommended to configure your firewall properly to allow access or in case you need to switch it off you may run `sudo systemctl disable firewalld`.
Another restriction access might be from SELinux which is switched on by default and you need to see it properly for your environment or in case you need to set it off you may run `setenforce 1`. +
CentOS-7 has its firewall by default on and it might restrict you to reaching your webserver. It's recommended to configure your firewall properly to allow access.
Another restriction access might be from SELinux which is switched on by default and you need to see it properly for your environment. +To switch both off, run the following: +``` +systemctl disable firewalld +sed -i 's/SELINUX=.*/SELINUX=permissive/g' /etc/sysconfig/selinux +reboot +``` > **IMPORTANT:** *Switching off above mentioned security features could cause major security risks, please configure them properly.* >