Home  >  Article  >  Database  >  What is the solution to Oracle installation crash?

What is the solution to Oracle installation crash?

hzc
hzcOriginal
2020-07-04 14:39:0816236browse

Solution to Oracle installation crash: First find the Oracle installation directory and find the folder named [2]; then delete this folder; and finally click setup.exe again.

What is the solution to Oracle installation crash?

1. Run the Oracle 11g installation file stepup.exe file as an administrator;

2. Start Oracle Universal Installer;

The program checked the memory space and passed;

Generated the startup installation file. After waiting for a long time, the installation interface still did not start;

3. View in the directory where the startup installation file was generated. Error log;

4. Open the error log;

Error message found: oracle.cluster.verification.PreReqNotSupportedException: Reference data cannot be used to verify the prerequisites for this operating system distribution;

Analysis of the cause of the error: The installation file is not applicable to this system (win10);

5. Open the database\stage\cvu\cvu_prereq.xml file in the Oracle 11g directory;

6. In Add the win10 support code between 39b61bc93b59fe96082ecbdfe28599658e77408d297f4c20d7595cd9c67859d6 and save;

Add the support code as follows:

  <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>

7. Delete the generated startup installation File directory

8. Re-run the Oracle 11g installation file stepup.exe file as an administrator;

Recommended tutorial: "Oracle Tutorial"

The above is the detailed content of What is the solution to Oracle installation crash?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn