Skip to content

Commit 24ccf89

Browse files
author
Simonx Xu
authored
Merge pull request #7997 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/SupportArticles-docs (branch main)
2 parents a2e1361 + ea0af7a commit 24ccf89

File tree

1 file changed

+36
-10
lines changed

1 file changed

+36
-10
lines changed

support/azure/virtual-machines/linux/troubleshoot-linux-rhui-certificate-issues.md

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: msaenzbosupport
55
ms.author: msaenzbo
66
ms.reviewer: divargas-msft, pagienge, navpreetkaur, v-weizhu
77
editor: v-jsitser
8-
ms.date: 10/24/2024
8+
ms.date: 01/08/2025
99
ms.service: azure-virtual-machines
1010
ms.custom: sap:VM Admin - Linux (Guest OS), linux-related-content
1111
---
@@ -405,7 +405,7 @@ The images from the following offers that were created *after* December 2019 are
405405
406406
The following steps apply if the OS version is *RHEL 7.9* and the VM was created by using the `RHEL-SAP-HA` offer image.
407407
408-
1. Remove the releasever file if it exist.
408+
1. Remove the releasever file if it exists.
409409
410410
```bash
411411
sudo rm /etc/yum/vars/releasever
@@ -455,7 +455,7 @@ The following steps apply if the OS version is *earlier than the latest version
455455
sudo echo $(. /etc/os-release && echo $VERSION_ID) > /etc/dnf/vars/releasever
456456
```
457457
458-
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `yum repolist` command:
458+
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
459459
460460
```bash
461461
sudo dnf repolist all
@@ -465,7 +465,7 @@ The following steps apply if the OS version is *earlier than the latest version
465465
466466
The following steps apply if the OS version is *RHEL 8.10* supported by SAP and the VM was created by using the `RHEL-SAP-APPS` offer image.
467467
468-
1. Remove the releasever file if it exist.
468+
1. Remove the releasever file if it exists.
469469
470470
```bash
471471
sudo rm /etc/yum/vars/releasever
@@ -477,7 +477,7 @@ The following steps apply if the OS version is *RHEL 8.10* supported by SAP and
477477
sudo dnf --config='https://rhelimage.blob.core.windows.net/repositories/rhui-microsoft-azure-rhel8-base-sapapps.config' install rhui-azure-rhel8-base-sap-apps
478478
```
479479
480-
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `yum repolist` command:
480+
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
481481
482482
```bash
483483
sudo dnf repolist all
@@ -499,7 +499,7 @@ The following steps apply if the OS version is *earlier than the latest version
499499
sudo echo $(. /etc/os-release && echo $VERSION_ID) > /etc/dnf/vars/releasever
500500
```
501501
502-
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `yum repolist` command:
502+
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
503503
504504
```bash
505505
sudo dnf repolist all
@@ -509,7 +509,7 @@ The following steps apply if the OS version is *earlier than the latest version
509509
510510
The following steps apply if the OS version is *RHEL 8.10* and the VM was created by using the `RHEL-SAP-HA` offer image.
511511
512-
1. Remove the releasever file if it exist.
512+
1. Remove the releasever file if it exists.
513513
514514
```bash
515515
sudo rm /etc/yum/vars/releasever
@@ -521,10 +521,10 @@ The following steps apply if the OS version is *RHEL 8.10* and the VM was create
521521
sudo dnf --config='https://rhelimage.blob.core.windows.net/repositories/rhui-microsoft-azure-rhel8-base-sap-ha.config' install rhui-azure-rhel8-base-sap-ha
522522
```
523523
524-
4. Verify that the corresponding repositories are available and show no errors. To do this, run the `yum repolist` command:
524+
4. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
525525
526526
```bash
527-
sudo yum repolist all
527+
sudo dnf repolist all
528528
```
529529
530530
@@ -542,12 +542,38 @@ The following steps apply if the OS version is *RHEL 8.10* and the VM was create
542542
sudo echo $(. /etc/os-release && echo $VERSION_ID) > /etc/dnf/vars/releasever
543543
```
544544
545-
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `yum repolist` command:
545+
3. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
546546
547547
```bash
548548
sudo dnf repolist all
549549
```
550+
551+
552+
#### [RHEL 8.10 - RHEL-HA](#tab/rhe810-rhel-base-ha)
550553
554+
1. Remove the releasever file if it exists:
555+
556+
```bash
557+
sudo rm /etc/yum/vars/releasever
558+
```
559+
560+
2. Remove the client `rhui-azure-rhel8-ha` package by running the `dnf remove` command:
561+
562+
```bash
563+
sudo dnf remove rhui-azure-rhel8-ha
564+
```
565+
566+
3. Install the `rhui-azure-rhel8-base-ha` package by running the [dnf](https://dnf.readthedocs.io/en/latest/command_ref.html) installation command:
567+
568+
```bash
569+
sudo dnf --config='https://rhelimage.blob.core.windows.net/repositories/rhui-microsoft-azure-rhel8-base-ha.config' install rhui-azure-rhel8-base-ha
570+
```
571+
572+
4. Verify that the corresponding repositories are available and show no errors. To do this, run the `dnf repolist` command:
573+
574+
```bash
575+
sudo dnf repolist all
576+
```
551577
---
552578
553579
> [!NOTE]

0 commit comments

Comments
 (0)