You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RHEL 10.0 EUS and related product offerings have been published by Red Hat and are available in RHUI. Since this is a new major version there are several places in the support docs that need to be updated.
The troubleshooting steps / installation guides for RHEL 10 repos are basically identical to their RHEL 9 equivalents, with the following 2 changes:
9 -> 10
The gpgkey should reference https://packages.microsoft.com/keys/microsoft-2025.asc instead of .../microsoft.asc as in RHEL 9 and previous.
I have also updated a few lines with current EUS version support information
##### <aid="eus"></a> EUS RHUI package installation
@@ -252,6 +253,41 @@ Select the tab of an EUS image type to see the corresponding instructions.
252
253
sudo rhel9-eus.config
253
254
```
254
255
256
+
###### [RHEL 10.x - EUS](#tab/rhel10-eus)
257
+
258
+
259
+
260
+
1. Create a config file by using this command:
261
+
262
+
```bash
263
+
sudo tee rhel10-eus.config > /dev/null <<< $'[rhui-microsoft-azure-rhel10-eus]\nname=Microsoft Azure RPMs for Red Hat Enterprise Linux 10 (rhel10-eus)\nbaseurl=https://rhui4-1.microsoft.com/pulp/repos/unprotected/microsoft-azure-rhel10-eus\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft-2025.asc\nsslverify=1'
264
+
265
+
```
266
+
267
+
2. Install the `rhui-azure-rhel10-eus` package by running.
4. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
280
+
281
+
```bash
282
+
sudo dnf repolist all
283
+
```
284
+
285
+
5. Remove the temp file created on step 1.
286
+
287
+
```bash
288
+
sudo rhel10-eus.config
289
+
```
290
+
255
291
---
256
292
257
293
@@ -818,6 +854,123 @@ The following steps apply if the OS version is *earlier than the latest version
818
854
---
819
855
820
856
857
+
> [!NOTE]
858
+
> If you're using a proxy in*/etc/yum.conf* or */etc/dnf.conf*, the `yum --config rhelX-XX-XX.config`command won't work because it doesn't include your proxy settings. In this case, move the temp file `rhelX-XX-XX.config` directly in`/etc/yum.repos.d/` as `.repo`
The following steps apply if the OS version is *earlier than the latest version that's available* that's supported by SAP for`RHEL 10.0`, and if the VM was created by using the `RHEL-SAP-APPS` offer image.
874
+
875
+
1. Create a config file by using this command:
876
+
877
+
```bash
878
+
sudo tee rhel10-sapapps.config > /dev/null <<<$'[rhui-microsoft-azure-rhel10-sapapps]\nname=Microsoft Azure RPMs for Red Hat Enterprise Linux 10 (rhel10-sapapps)\nbaseurl=https://rhui4-1.microsoft.com/pulp/repos/unprotected/microsoft-azure-rhel10-sapapps\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft-2025.asc\nsslverify=1'
879
+
```
880
+
881
+
2. Install the `rhui-azure-rhel10-sapapps` package by running the `dnf install` command:
The following steps apply if the OS version is *earlier than the latest version available* that's supported by SAP for`RHEL 10.0`, and if the VM was created by using the `RHEL-SAP-HA` offer image.
908
+
909
+
1. Create a config file by using this command:
910
+
911
+
```bash
912
+
sudo tee rhel10-sap-ha.config > /dev/null <<<$'[rhui-microsoft-azure-rhel10-sap-ha]\nname=Microsoft Azure RPMs for Red Hat Enterprise Linux 10 (rhel10-sap-ha)\nbaseurl=https://rhui4-1.microsoft.com/pulp/repos/unprotected/microsoft-azure-rhel10-sap-ha\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft-2025.asc\nsslverify=1'
913
+
```
914
+
915
+
2. Install the `rhui-azure-rhel10-sap-ha` package by running the `dnf install` command:
sudo tee rhel10-ha.config > /dev/null <<< $'[rhui-microsoft-azure-rhel10-ha]\nname=Microsoft Azure RPMs for Red Hat Enterprise Linux 10 (rhel10-ha)\nbaseurl=https://rhui4-1.microsoft.com/pulp/repos/unprotected/microsoft-azure-rhel10-ha\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft-2025.asc\nsslverify=1'
945
+
```
946
+
947
+
2. Install the `rhui-azure-rhel10-ha` package by running the [dnf](https://dnf.readthedocs.io/en/latest/command_ref.html) installation command:
3. Lock the `releasever` level. Currently, the version must be 10.0.
954
+
955
+
```bash
956
+
sudo sh -c 'echo 10.0 > /etc/dnf/vars/releasever'
957
+
```
958
+
959
+
4. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
960
+
961
+
```bash
962
+
sudo dnf repolist
963
+
```
964
+
965
+
5. Remove the temp file created on step 1.
966
+
967
+
```bash
968
+
sudo rm rhel10-ha.config
969
+
```
970
+
971
+
---
972
+
973
+
821
974
> [!NOTE]
822
975
> If you're using a proxy in*/etc/yum.conf* or */etc/dnf.conf*, the `yum --config rhelX-XX-XX.config`command won't work because it doesn't include your proxy settings. In this case, move the temp file `rhelX-XX-XX.config` directly in`/etc/yum.repos.d/` as `.repo`
823
976
>
@@ -929,5 +1082,3 @@ Revert the cryptography to the `DEFAULT` system policy setting by following thes
929
1082
For more information about cryptographic policy, see [Strong crypto defaults in RHEL 8 and deprecation of weak crypto algorithms](https://access.redhat.com/articles/3642912).
0 commit comments