Oracle 19c DB install on Oracle Linux 8 – avoid [WARNING] [INS-08101] Unexpected error while executing the action at state: ‘supportedOSCheck’
[INS-08101] Unexpected error while executing the action at state: ‘supportedOSCheck’.
Above error occurred while 19c (19.3) binary installation on server Oracle enterprise Linux version version 8.1 or greater
Met INS-08101 when I installed Oracle database 19c on Oracle Linux 8 update
Unexpected error while executing the action at state: 'supportedOSCheck'
Solution 1
To solve this error 'supportedOSCheck' can set environment variable CV_ASSUME_DISTID, either temporarily or permanently.
At runtime, we can export the variable
$ export CV_ASSUME_DISTID=OEL8.1
Solution 2
Or we can uncomment the line containing the variable in the CVU configuration file.
$ vi $ORACLE_HOME/cv/admin/cvu_config
#CV_ASSUME_DISTID=OEL5
Just remove the leading # the line
Comments
Post a Comment