Solution for [INS-08101] Unexpected error ‘supportedOSCheck’ while Oracle 19C Installation

June 15, 2021
()

Solution for [INS-08101] Unexpected error ‘supportedOSCheck’ while Oracle 19C Installation

In this article we will solve error [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 (OEL) 8.2 or greater than version 8.1 i.e Oracle 19c supported up to version OEL 8.1, refer below image along with complete error of  [INS-08101].

[INS-08101] Unexpected error while executing the action at state: 'supportedOSCheck'


Cause - No additional information available.  
Action - Contact Oracle Support Services or refer to the software manual.  
Summary  - java.lang.NullPointerException


Now let’s move on to a solution/workaround for this error. To fix this error we have two workarounds.

Workaround 1. Temporary Fix: Execute the below command to validate OS version and then export CV_ASSUME_DISTID to the supported version of OEL for 19c. Here we are using 8.1.

[oracle@DBsGuruN ~]$ cat /etc/os-release
NAME="Oracle Linux Server"
VERSION="8.4"
ID="ol"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="8.4"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Oracle Linux Server 8.4"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:oracle:linux:8:4:server"
HOME_URL="https://linux.oracle.com/"
BUG_REPORT_URL="https://bugzilla.oracle.com/"
ORACLE_BUGZILLA_PRODUCT="Oracle Linux 8"
ORACLE_BUGZILLA_PRODUCT_VERSION=8.4
ORACLE_SUPPORT_PRODUCT="Oracle Linux"
[oracle@DBsGuruN ~]$ export CV_ASSUME_DISTID=OEL8.1
[oracle@DBsGuruN ~]$ echo $CV_ASSUME_DISTID
OEL8.1


Workaround 2. Permanent Fix: Edit file $ORACLE_HOME/cv/admin/cvu_config using any editing tool and add a new line CV_ASSUME_DISTID=OEL8.1, followed by saving the file.

[oracle@DBsGuruN db_1]$ vi $ORACLE_HOME/cv/admin/cvu_config
CV_ASSUME_DISTID=OEL8.1
[oracle@DBsGuruN db_1]$ cat $ORACLE_HOME/cv/admin/cvu_config | grep -i CV_ASSUME_DISTID
#CV_ASSUME_DISTID=OEL5
CV_ASSUME_DISTID=OEL8.1


Now you can launch the installer using the command without prompt any warnings/errors.

[oracle@DBsGuruN db_1]$ ./runInstaller

 

This document is just for learning purpose and always validate in the LAB environment first before applying in the LIVE environment.


Hope so you like this article
!
Please share your valuable feedback/comments/subscribe and follow us below and don’t forget to click on the bell icon to get the most recent update. Click here to understand more about our pursuit.


Recent articles

 


Loading

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

<strong>Hello and welcome to DBsGuru,</strong>DBsGuru is a group of experienced DBA professionals and serves databases and their related community by providing technical blogs, projects, training. Technical blogs are the source of vast information not about databases but its related product like middleware, PL/SQL, replication methodology, and so on.Thanks for the visits!<strong>Share Learn Grow!</strong>

4 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *