Template:AddReposRHEL: Difference between revisions
From Open-Xchange
mNo edit summary |
No edit summary |
||
(37 intermediate revisions by 6 users not shown) | |||
Line 4: | Line 4: | ||
Start a console and create a software repository file for Open-Xchange: | Start a console and create a software repository file for Open-Xchange: | ||
$ vim /etc/yum.repos.d/ox.repo | |||
[ox-appsuiteui] | |||
[ox- | name=Open-Xchange-appsuiteui | ||
name=Open-Xchange- | baseurl=https://software.open-xchange.com/products/appsuite/stable/appsuiteui/{{{rhelname}}}/ | ||
baseurl= | gpgkey=https://software.open-xchange.com/oxbuildkey.pub | ||
gpgkey= | |||
enabled=1 | enabled=1 | ||
gpgcheck=1 | gpgcheck=1 | ||
Line 39: | Line 16: | ||
[ox-backend] | [ox-backend] | ||
name=Open-Xchange-backend | name=Open-Xchange-backend | ||
baseurl= | baseurl=https://software.open-xchange.com/products/appsuite/stable/backend/{{{rhelname}}}/ | ||
gpgkey= | gpgkey=https://software.open-xchange.com/oxbuildkey.pub | ||
enabled=1 | enabled=1 | ||
gpgcheck=1 | gpgcheck=1 | ||
Line 49: | Line 26: | ||
# packages get installed | # packages get installed | ||
[ox-updates- | [ox-updates-appsuiteui] | ||
name=Open-Xchange Updates- | name=Open-Xchange Updates-appsuiteui | ||
baseurl= | baseurl=https://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/appsuiteui/updates/{{{rhelname}}}/ | ||
gpgkey= | gpgkey=https://software.open-xchange.com/oxbuildkey.pub | ||
enabled=1 | enabled=1 | ||
gpgcheck=1 | gpgcheck=1 | ||
Line 59: | Line 36: | ||
[ox-updates-backend] | [ox-updates-backend] | ||
name=Open-Xchange Updates-backend | name=Open-Xchange Updates-backend | ||
baseurl= | baseurl=https://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/backend/updates/{{{rhelname}}}/ | ||
gpgkey= | gpgkey=https://software.open-xchange.com/oxbuildkey.pub | ||
enabled=1 | enabled=1 | ||
gpgcheck=1 | gpgcheck=1 | ||
metadata_expire=0m | metadata_expire=0m | ||
In case there are issues with an username and password containing URL unsafe characters, e.g. an @, they have to be entered URL encoded. Details can be found at | <!-- | ||
Starting with the release of Open-Xchange AppSuite 7.6.0, you you can also download the complete repository list from | |||
https://software.open-xchange.com/products/appsuite/stable/{{{rhelname}}}.repo | |||
For the basic install, you only need the repositories backend and frontend, you can comment out the others. If you want to configure the update repositories as well, you need to replace LDBACCOUNT and LDBPASSWORD with your real LDB credentials. --> | |||
In case there are issues with an username and password containing URL unsafe characters, e.g. an @, they have to be entered URL encoded. Details can be found at https://www.w3schools.com/tags/ref_urlencode.asp |
Latest revision as of 09:40, 12 September 2024
Add Open-Xchange Repository
Open-Xchange maintains public available software repositories for different platforms, such as RHEL. This repository should be added to the RHEL installation to enable simple installation and updates.
Start a console and create a software repository file for Open-Xchange:
$ vim /etc/yum.repos.d/ox.repo [ox-appsuiteui] name=Open-Xchange-appsuiteui baseurl=https://software.open-xchange.com/products/appsuite/stable/appsuiteui/{{{rhelname}}}/ gpgkey=https://software.open-xchange.com/oxbuildkey.pub enabled=1 gpgcheck=1 metadata_expire=0m [ox-backend] name=Open-Xchange-backend baseurl=https://software.open-xchange.com/products/appsuite/stable/backend/{{{rhelname}}}/ gpgkey=https://software.open-xchange.com/oxbuildkey.pub enabled=1 gpgcheck=1 metadata_expire=0m # if you have a valid maintenance subscription, please uncomment the # following and add the ldb account data to the url so that the most recent # packages get installed [ox-updates-appsuiteui] name=Open-Xchange Updates-appsuiteui baseurl=https://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/appsuiteui/updates/{{{rhelname}}}/ gpgkey=https://software.open-xchange.com/oxbuildkey.pub enabled=1 gpgcheck=1 metadata_expire=0m [ox-updates-backend] name=Open-Xchange Updates-backend baseurl=https://LDBACCOUNT:LDBPASSWORD@software.open-xchange.com/products/appsuite/stable/backend/updates/{{{rhelname}}}/ gpgkey=https://software.open-xchange.com/oxbuildkey.pub enabled=1 gpgcheck=1 metadata_expire=0m
In case there are issues with an username and password containing URL unsafe characters, e.g. an @, they have to be entered URL encoded. Details can be found at https://www.w3schools.com/tags/ref_urlencode.asp