EBS 12.2.4 clone with linux 7

EBS老版本在高版本Linux进行安装clone时,总会出现操作系统版本检查错误。最近刚好又一次遇到这个问题,记录一下,供朋友们参考。

在进行EBS 12.2.4 安装时会进行操作系统版本的检查,虽然EBS 12.2.4支持Linux 7操作系统,但是由于oracle在这里做的并不完善。


以下已clone为例,介绍该问题及解决方法。


问题报错:

在进行clone操作

prereqcheck.log日志错误如下: 
Check Description:This is a prerequisite condition to test whether the Oracle software is certified on the current O/S or not. 
/etc/inittab does not seem to contain default runlevel information. 
Expected result: One of redhat-6,oracle-6,oracle-5.6,oracle-5.7,oracle-5.8,enterprise-5.4,enterprise-4,enterprise-5,redhat-5.4,redhat-4,redhat-5,SuSE-10,SuSE-11 
Actual Result: redhat-7.2.1511 
Check complete. The overall result of this check is: Failed <<<< 


问题描述:

问题报错中很明显能看到是因为Linux 7.2不在检查列表中,被认为不支持


解决方法:

先介绍第一种方法:

参考Cannot Clone 12.2.4 On Redhat Enterprise 7.1 - ERROR: Failed To Execute FMW Pre-requisite Check (文档 ID 2069130.1) 在源环境进行打补丁操作

Patch 19854840
打补丁的方式就不做进一步介绍了。


第二种方式,手动修改EBS检查操作系统的文件refhost.xml

这种方法也有响应note供参考:REDHAT6 - 12.2.2 Rapid Install Preinstall Checks (文档 ID 1588970.1)

可以按照上述方式进行修改。

下面列出我的解决方式:

1、查看如下文件内容

$COMMON_TOP/clone/prereq/webtier/Scripts/prereq/linux64/refhost.xml
$COMMON_TOP/adopclone_{hostname}/prereq/webtier/Scripts/prereq/linux64/refhost.xml

查看上述文件中是否包含Linux 7相关内容

如果没有添加如下内容

添加如下内容:


   
   
   
   
   
   

   
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

   
     
     
     
   



   
   
   
   
   
   

 















 

 



 



备注对于Linux 7在clone启动OHS时会报错,解决方法如下:

追溯日志可发现是缺少libpcre.so.0:

cd /usr/lib64

ln -s libpcre.so.1.2.0 libpcre.so.0




你可能感兴趣的:(EBS,R12.2)