Oracle RAC 11.2g

Installation and support for Oracle DB on CentOS.
Post Reply
yyagol
Posts: 1015
Joined: 2006/06/10 18:27:44
Location: 32 4′N 34 47′E
Contact:

Oracle RAC 11.2g

Post by yyagol » 2011/04/14 05:02:07

I want to share some information ,
while trying to install grid infrastructure 11.2 under CentOS , the old fashion way of
changing /etc/issue and /etc/redhat-release files did not work , and an error
that ADVM/ACFS is not support under CentOS will pop up .

[code]ADVM/ACFS is not supported on centos-release-5-5.el5.centos[/code]

solving this issue by editing the file $OCR_HOME/lib/osds_acfslib.pm
and changing this lines :

[code]if (($release =~ /^redhat-release/) || # straight RH
($release =~ /^enterprise-release/)) # Oracle Enterprise Linux [/code]

to support CentOS as well with this lines :

[code] if (($release =~ /^redhat-release/) || # straight RH
($release =~ /^enterprise-release/) || # Oracle Enterprise Linux
($release =~ /^centos-release/)) # CentOS[/code]

MatsK
Posts: 125
Joined: 2005/02/13 19:39:28
Location: Sala, Sweden
Contact:

Oracle RAC 11.2g

Post by MatsK » 2011/04/15 08:03:45

Nice post, I think this should be moved to the wiki ?!?!

Join the CentOS documentation team and submit it, or could I submit it on your behalf ?


Regards
/Mats

yyagol
Posts: 1015
Joined: 2006/06/10 18:27:44
Location: 32 4′N 34 47′E
Contact:

Re: Oracle RAC 11.2g

Post by yyagol » 2011/04/15 18:51:13

[quote]
MatsK wrote:
could I submit it on your behalf ?[/quote]
sure you can

Post Reply