Ins-10201 Execution Of 39-gi Install 39- Script Failed -
groups grid # Should include: oinstall, asmadmin, asmdba, asmoper (for GI) If wrong, fix with:
usermod -g oinstall -G asmadmin,asmdba,asmoper grid As the grid user, ensure: ins-10201 execution of 39-gi install 39- script failed
This error typically occurs during the installation of , often on Linux/Unix systems. The INS-10201 code indicates that a critical sub-process ( gi install ) did not complete successfully. Common Causes | Cause | Description | |-------|-------------| | Missing OS packages | Required RPMs or libraries not installed | | Incorrect kernel parameters | sysctl settings not meeting Oracle requirements | | Insufficient disk space | Especially in /tmp , /u01 , or GI home | | User/group misconfiguration | oracle , grid users or oinstall , dba , asmadmin groups not set correctly | | Environment variable issues | ORACLE_HOME , PATH , LD_LIBRARY_PATH | | Permission errors | Incorrect ownership on mount points or GI home | | SSH equivalence not set | For RAC or multi-node installs | Step-by-Step Fix 1. Check the detailed log The installer logs contain the real root cause. Look in: groups grid # Should include: oinstall, asmadmin, asmdba,
# As root: $ORACLE_HOME/crs/install/rootcrs.pl -deconfig -force # Then re-run root.sh To get a clearer error: Check the detailed log The installer logs contain
$ORACLE_BASE/cfgtoollogs/install/ Specifically, search for installActions*.log or giinstall.log . Look for the error above the INS-10201 message. 2. Verify OS package dependencies Run the Oracle pre-install RPM (if available) or check manually:
rpm -q binutils compat-libcap1 compat-libstdc++ gcc gcc-c++ glibc ksh libaio libgcc libstdc++ make sysstat Install missing packages using yum or dnf . Compare /etc/sysctl.conf against Oracle’s requirements (e.g., kernel.sem , fs.file-max , net.ipv4.ip_local_port_range ). Apply changes with:
Would you like help interpreting a specific log snippet?
groups grid # Should include: oinstall, asmadmin, asmdba, asmoper (for GI) If wrong, fix with:
usermod -g oinstall -G asmadmin,asmdba,asmoper grid As the grid user, ensure:
This error typically occurs during the installation of , often on Linux/Unix systems. The INS-10201 code indicates that a critical sub-process ( gi install ) did not complete successfully. Common Causes | Cause | Description | |-------|-------------| | Missing OS packages | Required RPMs or libraries not installed | | Incorrect kernel parameters | sysctl settings not meeting Oracle requirements | | Insufficient disk space | Especially in /tmp , /u01 , or GI home | | User/group misconfiguration | oracle , grid users or oinstall , dba , asmadmin groups not set correctly | | Environment variable issues | ORACLE_HOME , PATH , LD_LIBRARY_PATH | | Permission errors | Incorrect ownership on mount points or GI home | | SSH equivalence not set | For RAC or multi-node installs | Step-by-Step Fix 1. Check the detailed log The installer logs contain the real root cause. Look in:
# As root: $ORACLE_HOME/crs/install/rootcrs.pl -deconfig -force # Then re-run root.sh To get a clearer error:
$ORACLE_BASE/cfgtoollogs/install/ Specifically, search for installActions*.log or giinstall.log . Look for the error above the INS-10201 message. 2. Verify OS package dependencies Run the Oracle pre-install RPM (if available) or check manually:
rpm -q binutils compat-libcap1 compat-libstdc++ gcc gcc-c++ glibc ksh libaio libgcc libstdc++ make sysstat Install missing packages using yum or dnf . Compare /etc/sysctl.conf against Oracle’s requirements (e.g., kernel.sem , fs.file-max , net.ipv4.ip_local_port_range ). Apply changes with:
Would you like help interpreting a specific log snippet?