mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:13 +01:00
Add Rocky Linux, correct install without docker for RHEL 8 (...)
parent
98b5efd3fa
commit
a6222bc210
@ -116,21 +116,25 @@ yum update
|
||||
|
||||
> RHEL/CentOS 7 only has a VirtualHost for SSL/https, therefore you need to use https://<ip-or-domain>/ 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user