본문 바로가기
🗄️ DB_이야기/# 🛢️ Oracle

[Oracle] Silent 설치 시 [WARNING] [INS-08101] Unexpected error while executing the action at state: 'supportedOSCheck'

by gwon_s 2025. 12. 22.

Slient 모드로 설치 중 아래와 같은 에러 발생

[oracle@standby dbhome_1]$ ./runInstaller -silent -responseFile /u01/app/oracle/product/19c/dbhome_1/install/response/db_install.rsp -ignorePrereqFailure
Launching Oracle Database Setup Wizard...

[WARNING] [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
Moved the install session logs to:
 /u01/app/oraInventory/logs/InstallActions2025-12-22_09-28-43PM

문제 상황

  • OS 체크(supportedOSCheck)에서 NPE 터짐
  • NPE = NullPointerException (자바 예외)

📌 Oracle 설치 프로그램(runInstaller)은 자바로 작성됨
그래서 내부 오류가 나면 NPE 형태로 튀어나옴.


해결방법

✅ oracle 계정에서 환경변수 설정

export CV_ASSUME_DISTID=OEL7.9

(매번 치기 싫으면 ~/.bash_profile에 추가해도 됨)