Oracle Installation Error: environment does not meet requirements solution, oracle times

Source: Internet
Author: User
Tags lenovo

Oracle Installation Error: environment does not meet requirements solution, oracle times

In the past, I often encountered this problem when installing Oracle, and I didn't care too much about it. I modified the cvu_prereq.xml file under the client \ stage \ cvu directory (added information that supports the current operating system) I solved the problem and did not take notes, but some people asked it again later. For this reason, I recorded the problem for future reference:

1. First find cvu_prereq.xml under the client \ stage \ cvu directory. Some key code is as follows (before modification, take win8 as an example. Before modification, it does not support win8 System Information):

<? Xml version = "1.0"?>
<Host platid = "912">
<SYSTEM>
<MEMORY>
<PHYSICAL_MEMORY VALUE = "128" UNIT = "MB" SEVERITY = "IGNORABLE"/>
<! -- <AVAILABLE_MEMORY VALUE = "20" UNIT = "MB"/> -->
</MEMORY>
<SPACE>
<Loc var = "TEMP_AREA" TEMP = "true" SIZE = "130" UNIT = "MB" SEVERITY = "IGNORABLE"/>
</SPACE>
</SYSTEM>
<CERTIFIED_SYSTEMS>
<OPERATING_SYSTEM RELEASE = "5.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows2000"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "5.1">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsXP"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "5.2">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows Server 2003"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsServer2008"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsVista"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.1">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows 7"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<! -- Add information that supports the win8 system here -->
</CERTIFIED_SYSTEMS>
<ORACLE_HOME>
<COMPATIBILITY_MATRIX>
<ALLOW>
<NEW_HOME/>
<Comp name = "oracle. server" ATLEAST = "11.2.0.0.0" ATMOST = "11.2.9.9.9"/>
<Comp name = "oracle. client" ATLEAST = "11.2.0.0.0" ATMOST = "11.2.9.9.9"/>
</ALLOW>
<DISALLOW>
<Comp name = "oracle. server" ATLEAST = "8.1.0.0.0" ATMOST = "10.2.9.9.9"/>
<Comp name = "oracle. client" ATLEAST = "8.1.0.0.0" ATMOST = "9.2.0.9.0"/>
<Comp name = "oracle. iappserver. iapptop" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. iappserver. infrastructure" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. iappserver. devcorner" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. ids. toplevel. development" ATLEAST = "9.0.0.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. install. instcommon" ATLEAST = "8.1.3.0.0" ATMOST = "9.2.9.9.9"/>
<Comp name = "oracle. networking. netclt" ATLEAST = "8.1.3.0.0" ATMOST = "9.2.0.9.0"/>
<ORCA_HOME/>
</DISALLOW>
</COMPATIBILITY_MATRIX>
</ORACLE_HOME>
</HOST>


2. Add win8 system information in the specified region. The specific code is as follows (after modification ):

<? Xml version = "1.0"?>
<Host platid = "912">
<SYSTEM>
<MEMORY>
<PHYSICAL_MEMORY VALUE = "128" UNIT = "MB" SEVERITY = "IGNORABLE"/>
<! -- <AVAILABLE_MEMORY VALUE = "20" UNIT = "MB"/> -->
</MEMORY>
<SPACE>
<Loc var = "TEMP_AREA" TEMP = "true" SIZE = "130" UNIT = "MB" SEVERITY = "IGNORABLE"/>
</SPACE>
</SYSTEM>
<CERTIFIED_SYSTEMS>
<OPERATING_SYSTEM RELEASE = "5.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows2000"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "5.1">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsXP"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "5.2">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows Server 2003"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsServer2008"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.0">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "WindowsVista"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM RELEASE = "6.1">
<Version value = "3"/>
<Architecture value = "32-bit"/>
<Name value = "Windows 7"/>
<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 8"/>
<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 = "32-bit"/>
<Name value = "Windows 8"/>
<ENV_VAR_LIST>
<ENV_VAR NAME = "PATH" MAX_LENGTH = "1023"/>
</ENV_VAR_LIST>
</OPERATING_SYSTEM>


</CERTIFIED_SYSTEMS>
<ORACLE_HOME>
<COMPATIBILITY_MATRIX>
<ALLOW>
<NEW_HOME/>
<Comp name = "oracle. server" ATLEAST = "11.2.0.0.0" ATMOST = "11.2.9.9.9"/>
<Comp name = "oracle. client" ATLEAST = "11.2.0.0.0" ATMOST = "11.2.9.9.9"/>
</ALLOW>
<DISALLOW>
<Comp name = "oracle. server" ATLEAST = "8.1.0.0.0" ATMOST = "10.2.9.9.9"/>
<Comp name = "oracle. client" ATLEAST = "8.1.0.0.0" ATMOST = "9.2.0.9.0"/>
<Comp name = "oracle. iappserver. iapptop" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. iappserver. infrastructure" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. iappserver. devcorner" ATLEAST = "9.0.2.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. ids. toplevel. development" ATLEAST = "9.0.0.0.0" ATMOST = "9.0.9.0.0"/>
<Comp name = "oracle. install. instcommon" ATLEAST = "8.1.3.0.0" ATMOST = "9.2.9.9.9"/>
<Comp name = "oracle. networking. netclt" ATLEAST = "8.1.3.0.0" ATMOST = "9.2.0.9.0"/>
<ORCA_HOME/>
</DISALLOW>
</COMPATIBILITY_MATRIX>
</ORACLE_HOME>
</HOST>


When Windows 8 fails to meet the minimum requirements when installing oracle, how can we solve the problem that the configuration must meet the minimum requirements of oracle?

It is difficult to solve the problem with unclear description:

Whether win8 is 32bit or 64bit needs to be clarified
Whether the database installation file is 32bit or 64bit
Database Version

When installing the oracle11g database in win8, the installation times "the environment does not meet the minimum requirements"

Dear Lenovo user!
We recommend that you try another version. Check the system components required for database installation before installation.
Install all system components.
For more information, see
Idea Forum: lenovobbs.lenovo.com.cn/...ureply
Think Forum: thinkbbs.lenovo.com.cn/...ureply
Lenovo community: bbs.lenovomobile.com/...ureply
We look forward to your satisfaction. Thank you for your support for Lenovo and wish you a happy life!
Lenovo enterprise Platform [Official Certification]

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.