From a6222bc210b7a3d56197672befe581ffb5775680 Mon Sep 17 00:00:00 2001 From: StefanU Date: Sun, 4 Jul 2021 13:15:36 +0200 Subject: [PATCH] Add Rocky Linux, correct install without docker for RHEL 8 (...) --- Distribution-specific-instructions.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Distribution-specific-instructions.md b/Distribution-specific-instructions.md index 4df6754..e7730ea 100644 --- a/Distribution-specific-instructions.md +++ b/Distribution-specific-instructions.md @@ -116,21 +116,25 @@ yum update > RHEL/CentOS 7 only has a VirtualHost for SSL/https, therefore you need to use https:/// to access your new installation AND you can not use Chrome before installing a valid certificate! -# RHEL or CentOS 8 -> RHEL/CentOS 8 uses nftables instead of iptables, which does not work with current docker-ce. You need to configure firewalld to use iptables by editing /etc/firewalld/firewalld.conf: +# RHEL or CentOS 8 / Rocky Linux 8 +> RHEL/CentOS 8/Rocky Linux 8 uses nftables instead of iptables, which does not work with current docker-ce. You need to configure firewalld to use iptables by editing /etc/firewalld/firewalld.conf: ``` #FirewallBackend=nftables FirewallBackend=iptables systemctl restart firewalld ``` -> RHEL/CentOS 8 has no docker package (it uses it's own replacement podman instead). To install docker-CE run the following commands +> RHEL/CentOS 8/Rocky Linux 8 has no docker package (it uses it's own replacement podman instead). To install docker-CE run the following commands ``` curl https://download.docker.com/linux/centos/docker-ce.repo -o /etc/yum.repos.d/docker-ce.repo yum install --nobest docker-ce systemctl enable --now docker ``` -From their on you can follow the RHEL/CentOS 7 instructions above, replacing RHEL_7 in the repo-url with CentOS_8. +Then you need to run for a new installations: +``` +yum install egroupware-docker egroupware-collabora-key +``` + # Univention