In the process of installing Oralce in Linux, if the Linux release version is not the recommended version of 0racle, the following error may be reported, causing the runInstaller to fail:
Java code
- [Oracle@ LocalhostDatabase] $./runInstaller
- Starting Oracle Universal Installer...
-
- Checking installer requirements...
-
- Check the operating system version: It must be RedHat-3, SUSE-9, Redhat-4, UnitedLinux-1.0, Asianux-1Or asianux-2
- Failed <
-
- Exiting Oracle Universal Installer. You can go to/tmp/OraInstall2011-01-09_10-59-19 PM/installActions2011-01-09_10-59-19 PM. log: Find the log of this session
- [Oracle@ LocalhostDatabase] $./runInstaller
- Starting Oracle Universal Installer...
- Checking installer requirements...
- Check the operating system version: It must be redhat-3, SuSE-9, Redhat-4, UnitedLinux-1.0, Asianux-1Or asianux-2
- Failed <
- Exiting Oracle Universal Installer. You can go to/tmp/OraInstall2011-01-09_10-59-19 PM/installActions2011-01-09_10-59-19 PM. log: Find the log of this session
Modify the Linux release tag
For example, when installing oracle on a redhat-5, you need to change the contents of the '/etc/redhat-release' file from
Red Hat Enterprise Linux Server release 5.5 (Tikanga) |
Change
Red Hat Enterprise Linux Server release 4.5 (Tikanga) |
In the process of installing oralce in Linux, if the Linux release version is not the recommended version of oracle, the following error may be reported, causing the runInstaller to fail:
Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2 Failed < |
You can solve this problem in the following two ways:
1. Modify the Linux release tag
For example, when installing oracle on a redhat-5, you need to change the contents of the '/etc/redhat-release' file from
Red Hat Enterprise Linux Server release 5 (Tikanga) |
Change
Red Hat Enterprise Linux Server release 4 (Tikanga) |
2. Add the-ignoreSysPreReqs parameter to runInstaller, for example:
./RunInstaller-ignoreSysPreReqs |
However, this method is not recommended because it may miss the detection of Kernel Parameters of the operating system and required packages of oracle.
-- End --