Add Oracle HTTP Server support for RHEL 9 #124
Merged
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.
With RHEL 9 being supported in 8.2.0.0 - we need to ensure that it can deploy correctly.
An initial test on a RHEL9 VM with Oracle HTTP Server failed due to the below issues.
MIssing SymLink to required lib
The OHS install fails patching the system with the following error
cannot find /usr/lib64/libpthread_nonshared.a
From research - there seems to be a requirement to create a symlink for this package when installing OHS on RHEL
Oracle Fusion Middleware 12.2.1.4.0 Support with OL/RHEL9
The suggestion in this doc is
Non-java installTypes (OBIEE, Oracle Forms and Reports, Oracle HTTP Server, Oracle Internet Directory, Oracle Traffic Director, Oracle WebLogic Proxy Plugin) complete following steps:
a. As root user create symbolic link for libpthread_nonshared.a
cd /usr/lib64
ln -s libc_nonshared.a libpthread_nonshared.a
b. Press "Skip" button to continue to next page
Cert creation issues on RHEL 9
Once the symlink was fixed there was a further issue creating and importing the backend and frontend p12 cert to the Oracle HTTP Server..
The error thrown is:
oracle.security.crypto.core.CipherException:
oracle.security.crypto.core.InvalidKeyException:
oracle.security.crypto.core.AlgorithmIdentifierException:
No class found for OBJECT IDENTIFIER {1 2 840 113549 2 9}
This Oracle Doc related to Oracle HTTP Server seems to have the same error.. The suggestion was to add the following to the keytool command -
Add parameter " -J-Dkeystore.pkcs12.legacy" to keytool command.
However we don't use keytool, we have Oracle
orapki
So further research suggested the issue might be creating the cert with openssl - so i added a -legacy flag to the openssl command.
This seem to work, in that the cert was imported, and the rest of the install completed successfully
Now i need to see if this impacts a deployed application on a VM