Installation of Kolab 16 on Red Hat Enterprise Linux 7¶
The installation of Kolab Groupware on Red Hat Enterprise Linux installs a number of additional packages, from the EPEL software repository, and the repositories for the Kolab Enterprise edition, provided by Kolab Systems AG.
Installation Procedure¶
Copy the client SSL certificate and key you have obtained from Kolab Systems AG as per the instructions listed on [1], summarized here for your convenience:
Remove the passphrase from the SSL certificate key:
# openssl rsa -in /path/to/private.key \ -out /path/to/private.key.nopass
Concatenate the certificate file and the new key file without passphrase:
# cat /path/to/public.crt /path/to/private.key.nopass \ > /path/to/mirror.kolabsys.com.client.pem
Place the file
mirror.kolabsys.com.ca.cert
in/etc/pki/tls/certs/
.Place the file
mirror.kolabsys.client.pem
in/etc/pki/tls/private/
, and correct the permissions:# chown root:root /etc/pki/tls/private/mirror.kolabsys.com.client.pem # chmod 640 /etc/pki/tls/private/mirror.kolabsys.com.client.pem
Install the EPEL repository”
# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
Import this signature in to the RPM database:
# rpm --import https://ssl.kolabsys.com/maipo.asc
Install the Kolab Enterprise repository configuration package:
# yum install https://ssl.kolabsys.com/kolab-16-for-el7.rpm
Install Kolab Enterprise:
# yum --enablerepo=rhel-7-server-optional-rpms install kolab
Do not forget to also execute yum update.
Continue to Kolab Groupware Setup.
Footnotes