Conversation
EoinMan
marked this pull request as ready for review
July 2, 2026 14:02
EoinMan
enabled auto-merge (squash)
July 2, 2026 14:02
EoinMan
requested review from
a team,
huangjien,
martinfanning1,
ourboy,
romakarol and
salob
July 2, 2026 14:18
johnnyringsting
previously approved these changes
Jul 2, 2026
salob
previously approved these changes
Jul 2, 2026
johnnyringsting
approved these changes
Jul 3, 2026
salob
approved these changes
Jul 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix Oracle 19c installation on RHEL 9 (prereqs_installer_9)
Problem
Oracle 19c installations on RHEL 9 failed during the OPatch patch application
with exit code 73 at the relink step. Root cause: every 19c vars file used a
two-way condition (
RHEL 7or elseRHEL 8), causing RHEL 9 hosts to silentlyreceive the
el8Oracle preinstall RPM. This RPM omitscompat-openssl11andlibxcrypt-compat, which Oracle requires on RHEL 9. OPatch failed at relinkbecause those libraries were absent at link time.
Oracle's documentation confirms RHEL 9 support for Oracle 19c from RU 19.19:
https://docs.oracle.com/en/database/oracle/oracle-database/19/lacli/supported-red-hat-enterprise-linux-9-distributions-for-x86-64.html
Fix
Added
prereqs_installer_9pointing at theel9Oracle preinstall RPM andupdated the condition from two-way to three-way in all 19c vars files that
officially support RHEL 9 (RU ≥ 19.19):
v19.20throughv19.31(10 files).The pattern follows the existing approach already used in
v23.26.2.0.0.yml.v19.3andv19.14are unchanged — Oracle does not certify those RUs for RHEL 9.