Windows Server 2012 install Oracle 11g r2 environment does not meet the minimum requirements

Windows Server 2012 R2 to install Oracle 11g r2 environment does not meet the minimum requirements

Today installed in the production environment (window Server 2012 R2) Oracle[INS-13001] installation environment does not meet the minimum requirements of ** ** error when the database before also encountered the same problem on win10, here to do a record .

the reason

Oracle 11gR2 at the time of publication, win server 2012 or win 10 has not yet released, the two operating systems is not within the scope of certification Oracle, why we have the above error.

solve

There are two solutions:

  1. Simply ignore and continue the installation.

  2. Modify Oracle configuration.

Open the configuration file \database\stage\cvu\cvu_prereq.xml, add windows server configuration or windows 10 of 2012

<OPERATING_SYSTEM RELEASE="6.2">
           <VERSION VALUE="3"/>
           <ARCHITECTURE VALUE="64-bit"/>
           <NAME VALUE="Windows 10"/>
           <ENV_VAR_LIST>
               <ENV_VAR NAME="PATH" MAX_LENGTH="1023" />
           </ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE="6.2">
           <VERSION VALUE="3"/>
           <ARCHITECTURE VALUE="64-bit"/>
           <NAME VALUE="Windows server 2012"/>
           <ENV_VAR_LIST>
               <ENV_VAR NAME="PATH" MAX_LENGTH="1023" />
           </ENV_VAR_LIST>
</OPERATING_SYSTEM>

Reproduced in: https: //my.oschina.net/u/3655450/blog/1834399

Guess you like

Origin blog.csdn.net/weixin_33979203/article/details/92397642