Errors that may be encountered in installing Oracle on WIN7

Source: Internet
Author: User

Install Oracle, there is always a warning two error error, the description is: OUI-18001: OS ' Windows Vista version 6.1 ' is not supported, find for a long time, finally found the reason, because Oracle does not support the WIN7 operating system.

Before installing, you must first modify the two places in the installation package, respectively:

Modify One: The Oracle installation package searches for refhost.xml files, usually in ... \stage\prereq\client, in the Refhost.xml file, by adding the following code before </CERTIFIED_SYSTEMS>:

<!--Microsoft Windows 7-->

<OPERATING_SYSTEM>

<versionvalue= "6.1"/>

</operating_system>

The modified code is:

<?xml version= ' 1.0 ' encoding= ' windows-1252 '?>
<!--Copyright (c) 2004, Oracle.  All rights reserved. -
<!--ref host for Windows--
<SYSTEM>
<MEMORY>
<physical_memory value= "922" unit= "MB"/>
<!--available_memory value= "" unit= "MB"/-->
<SWAP_SIZE>
<step name= "physical_memory" atleast= "0" atmost= "" unit= "MB" multiple= "3"/>
<step name= "Physical_memory" greater_than= "Up" atmost= "" "unit=" MB "multiple=" 2 "/>
<step name= "Physical_memory" greater_than= "Up" atmost= "2048" unit= "MB" multiple= "1.5"/>
<step name= "physical_memory" greater_than= "2048" atmost= "8192" unit= "MB" multiple= "1"/>
<step name= "Physical_memory" greater_than= "8192" unit= "MB" multiple= "0.75"/>
</SWAP_SIZE>
</MEMORY>
</SYSTEM>
<CERTIFIED_SYSTEMS>
<OPERATING_SYSTEM>
<version value= "5.0"/>
<service_pack value= "1"/>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM>
<version value= "5.1"/>
<service_pack value= "1"/>
</OPERATING_SYSTEM>
<OPERATING_SYSTEM>
<version value= "5.2"/>
</OPERATING_SYSTEM>
<!--Microsoft Windows vista-->
<OPERATING_SYSTEM>
<version value= "6.0"/>
</OPERATING_SYSTEM>
<!--Microsoft Windows 7-->
<OPERATING_SYSTEM>
<version value= "6.1"/>
</OPERATING_SYSTEM>

</CERTIFIED_SYSTEMS>
<ORACLE_HOME>
<COMPATIBILITY_MATRIX>
<ALLOW>
<NEW_HOME/>
</ALLOW>
<DISALLOW>
<comp name= "Oracle.server" atleast= "8.1.0.0.0" atmost= "9.2.0.9.0"/>
<comp name= "Oracle.server" atleast= "10.1.0.0.0" atmost= "10.2.0.9.0"/>
<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= "99.9.9.9.9"/>
<comp name= "Oracle.iappserver.infrastructure" atleast= "9.0.2.0.0" atmost= "99.9.9.9.9"/>
<comp name= "Oracle.iappserver.devcorner" atleast= "9.0.2.0.0" atmost= "99.9.9.9.9"/>
<comp name= "oracle.ids.toplevel.development" atleast= "9.0.0.0.0" atmost= "99.9.9.9.9"/>
<comp name= "ORACLE.NETWORKING.NETCLT" atleast= "8.1.3.0.0" atmost= "9.2.0.9.0"/>
<comp name= "Oracle.install.instcommon" atleast= "8.1.3.0.0" atmost= "9.2.9.9.9"/>
<comp name= "oracle.client" atleast= "10.1.0.0.0"/>
<comp name= "Oracle.crs" atleast= "10.1.0.0.0"/>
<ORCA_HOME/>
</DISALLOW>
</COMPATIBILITY_MATRIX>
</ORACLE_HOME>
</HOST>


Modified two:

Search for Oraparam.ini files in the ORACLE installation package, usually in \oracle\install

Add the following code to the Oraparam.ini file

#You can customise error message shown forfailure, provide value for Certified_version_failure_message
#Windows =5.0,5.1,5.2,6.0,6.1

#[windows-6.1-required]
#Minimum display colours for OUI to run
min_display_colors=256
#Minimum CPU speed required for OUI
#CPU =300
#[windows-6.1-optional]

The contents of the modified file are:

[Oracle]
Distribution=true
Source=. /stage/products.xml
license_location=
Bootstrap_comps= "oracle.swd.oui:11.1.0.6.0,oracle.swd.oui.core:11.1.0.6.0,oracle.jdk:1.5.0.1.1"
Jre_scratch_loc=jdk/jre
Jre_memory_options= "-mx96m"
Default_home_location=product\11.1.0\db
Default_home_name=oradb11g_home
No_browse=/net
Nls_enabled=true
Bootstrap=true
ext_jlib=. /stage/ext/jlib
oui_version=11.1.0.6.0
# # Jre_version is only for Windows. This was to copy Accessbridge DLLs
jre_version=1.4.2
Access_dir=. /install/access
#SHOW_HOSTNAME =always_show shows the HOSTNAME panel always
#SHOW_HOSTNAME =never_show does not the HOSTNAME panel
#SHOW_HOSTNAME =condition_show shows the HOSTNAME panel on CONDITION
Show_hostname=never_show
#THIN_JDBC_FILENAME is optional and defaults to Classes12.jar
#The value specified for this should is packaged with OUI, and should
#be relative to <oui expanded stagedir>/jlib/
Thin_jdbc_filename=classes12.jar
#RUN_OUICA Specifies the batch script name that needs to be RUN
#The script is ouica.bat for Win32, and OUICA.SH for Solaris.
#If The value is not specified and then the Ouica script was not run
Run_ouica=ouica.bat
clusterware={"Oracle.crs", "10.1.0.2.0"}
Silent_variable_validation=true


#You can customise error message shown for failure, provide value for Certified_version_failure_message
#Windows =5.0,5.1,5.2,6.0,6.1
#[windows-6.1-required]
#Minimum display colours for OUI to run
min_display_colors=256
#Minimum CPU speed required for OUI
#CPU =300
#[windows-6.1-optional]



[Generic Prereqs]
min_display_colors=256

[IMAGES]
File1=images/billboards.gif

License_location=license.txt

These two places have been modified after the installation is really nothing unusual. After installation, start the Oracle Database listening service, the boot Oracleoracletnslistener service can not find the path, because its path is wrong, but can not be directly modified, search the Internet found in the registry, Look for the Oracleoracletnslistener directory under System service, then click on the ImagePath on the right to modify its path to the path of the TNSLSNR.EXE file under the installation path. Then restart the service, there is no problem. Oracle is finally finished installing.

Install errors that may be encountered in Oracle on Win7

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.