I was trying to install Oracle 19c on my Redhat 8.1 server, but i get the following error when i launch the installation
[INS-08101] Unexpected error while executing the action at state: 'supportedOSCheck' Is it even supported ? If no, is there any workaround i can do to launch the installation ?
Thank you
3 Answers
I finally found a workaround to the Installation of Oracle 19c on Redhat 8.1. Before installing, i set the following environment variable, then i launch the install.
export CV_ASSUME_DISTID=OEL7.6 There are currently no versions of Oracle certified for RHEL8 or OEL8. 20c will probably be the first one, later this year. As I understand it from posting on other Oracle Communities sites, it is not expected that any of the 12c family (12cR1, 12cR2, 18c, 19c) will ever be certified on RHEL8 or OEL8, but Oracle hasn't really given an official position yet.
Here's an article that claims to know how to get it to install, but I have not verified it personally. The author notes that the configuration is not supported by Oracle and should not be used for anything important - only for testing.
1Met INS-08101 when I installed Oracle database 19c on Oracle Linux 8 update 2.
- Temporarily At runtime, we can export the variable.
get VERSION_ID
$ cat /etc/os-release | grep VERSION_ID | awk -F"\"" '{print $2}' $ export CV_ASSUME_DISTID=OEL8.2 - Permanently Or we can set the variable in the CVU configuration file.
vi $ORACLE_HOME/cv/admin/cvu_config
CV_ASSUME_DISTID=OEL8.2