search
HomeDatabaseMysql TutorialOracle runInstaller 安装不显示 OUI 处理 说明

操作系统:OracleLinux 6.1 32位数据库: Oracle11.2.0.3因为Oracle 11g以后的Patchset 可以直接用来安装,所以我也是直接安装成

操作系统:OracleLinux 6.1 32位

数据库: Oracle11.2.0.3

因为Oracle 11g以后的Patchset 可以直接用来安装,所以我也是直接安装成11.2.0.3, 这样也省的升级,期间搭建了2套VM。

第一套是Oracle  Linux 6.1 64位,安装没有问题。 第二套是Oracle Linux 6.1 32位,在运行runInstaller 的时候验证这块没有报错,但是执行完后没有任何结果,没有弹出OUI,直接退出了安装。

Log 日志如下:

[root@tianlesoftwareOraInstall2012-02-13_06-34-36PM]# cat installActions2012-02-13_06-34-36PM.log

Using paramFile:/mnt/OracleSoftware/11.2.0.3_PSU_p10404530/p10404530_112030_LINUX_12/database/install/oraparam.ini

 

 

Checking Temp space: must be greater than120 MB.   Actual 13343 MB    Passed

Checking swap space: must be greater than150 MB.   Actual 2999 MB    Passed

Checking monitor: must be configured todisplay at least 256 colors.    Actual16777216    Passed

 

The commandline forunzip:

/mnt/OracleSoftware/11.2.0.3_PSU_p10404530/p10404530_112030_LINUX_12/database/install/unzip-qqqo ../stage/Components/oracle.jdk/1.5.0.30.03/1/DataFiles/\*.jar -d/tmp/OraInstall2012-02-13_06-34-36PM

Using the umask value '022' available fromoraparam.ini

 

其实这里已经可以猜出原因了,不过我们可以使用OUI 的debug 功能进一步验证一下:

 

 

在debug 默认下,又提供了如下的信息:

5 files had nozipfile directory.

No zipfiles found. 

之前是在Win7下解压缩后mount 到linux,进行安装的,后来将压缩包copy到linux 后在解压缩,使用Linux 上解压缩的安装介质安装,就可以正常安装了,,这个也正好和提示相符,应该是在解压缩的过程中丢失了某些文件。

所以还是尽量到Linux 上进行解压缩操作,这里的解决方法也只是一种,可能有其他的原因造成,那么runInstalleer的debug 功能可以提供给我们更多的信息,以帮助我们分析问题。

另外在11g的安装中很常见的一个问题:

[INS-35172]Target database memory (XXMB) exceeds the systems available shared memory({0}MB) 解决方法

linux

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
MySQL BLOB : are there any limits?MySQL BLOB : are there any limits?May 08, 2025 am 12:22 AM

MySQLBLOBshavelimits:TINYBLOB(255bytes),BLOB(65,535bytes),MEDIUMBLOB(16,777,215bytes),andLONGBLOB(4,294,967,295bytes).TouseBLOBseffectively:1)ConsiderperformanceimpactsandstorelargeBLOBsexternally;2)Managebackupsandreplicationcarefully;3)Usepathsinst

MySQL : What are the best tools to automate users creation?MySQL : What are the best tools to automate users creation?May 08, 2025 am 12:22 AM

The best tools and technologies for automating the creation of users in MySQL include: 1. MySQLWorkbench, suitable for small to medium-sized environments, easy to use but high resource consumption; 2. Ansible, suitable for multi-server environments, simple but steep learning curve; 3. Custom Python scripts, flexible but need to ensure script security; 4. Puppet and Chef, suitable for large-scale environments, complex but scalable. Scale, learning curve and integration needs should be considered when choosing.

MySQL: Can I search inside a blob?MySQL: Can I search inside a blob?May 08, 2025 am 12:20 AM

Yes,youcansearchinsideaBLOBinMySQLusingspecifictechniques.1)ConverttheBLOBtoaUTF-8stringwithCONVERTfunctionandsearchusingLIKE.2)ForcompressedBLOBs,useUNCOMPRESSbeforeconversion.3)Considerperformanceimpactsanddataencoding.4)Forcomplexdata,externalproc

MySQL String Data Types: A Comprehensive GuideMySQL String Data Types: A Comprehensive GuideMay 08, 2025 am 12:14 AM

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,idealforconsistentlengthdatalikecountrycodes;2)VARCHARforvariable-lengthstrings,suitableforfieldslikenames;3)TEXTtypesforlargertext,goodforblogpostsbutcanimpactperformance;4)BINARYandVARB

Mastering MySQL BLOBs: A Step-by-Step TutorialMastering MySQL BLOBs: A Step-by-Step TutorialMay 08, 2025 am 12:01 AM

TomasterMySQLBLOBs,followthesesteps:1)ChoosetheappropriateBLOBtype(TINYBLOB,BLOB,MEDIUMBLOB,LONGBLOB)basedondatasize.2)InsertdatausingLOAD_FILEforefficiency.3)Storefilereferencesinsteadoffilestoimproveperformance.4)UseDUMPFILEtoretrieveandsaveBLOBsco

BLOB Data Type in MySQL: A Detailed Overview for DevelopersBLOB Data Type in MySQL: A Detailed Overview for DevelopersMay 07, 2025 pm 05:41 PM

BlobdatatypesinmysqlareusedforvoringLargebinarydatalikeImagesoraudio.1) Useblobtypes (tinyblobtolongblob) Basedondatasizeneeds. 2) Storeblobsin Perplate Petooptimize Performance.3) ConsidersxterNal Storage Forel Blob Romana DatabasesizerIndimprovebackupupe

How to Add Users to MySQL from the Command LineHow to Add Users to MySQL from the Command LineMay 07, 2025 pm 05:01 PM

ToadduserstoMySQLfromthecommandline,loginasroot,thenuseCREATEUSER'username'@'host'IDENTIFIEDBY'password';tocreateanewuser.GrantpermissionswithGRANTALLPRIVILEGESONdatabase.*TO'username'@'host';anduseFLUSHPRIVILEGES;toapplychanges.Alwaysusestrongpasswo

What Are the Different String Data Types in MySQL? A Detailed OverviewWhat Are the Different String Data Types in MySQL? A Detailed OverviewMay 07, 2025 pm 03:33 PM

MySQLofferseightstringdatatypes:CHAR,VARCHAR,BINARY,VARBINARY,BLOB,TEXT,ENUM,andSET.1)CHARisfixed-length,idealforconsistentdatalikecountrycodes.2)VARCHARisvariable-length,efficientforvaryingdatalikenames.3)BINARYandVARBINARYstorebinarydata,similartoC

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor