Monday 14 May 2012

Issues in Installtion 10gr2 on linux 64-bit


Last week I have installed oracle  10.2.0.1.0 on  linux 2.6.9-22.ELsmp .I faced the below errors 

1)  Error in invoking target 'install' of makefile ins_ctx.mk

Solution:
Install rpm glibc-devel-2.3.4-2.39.i386.rpm

This rpm is required as few installation files required 32-bit compatibility
 32-bit  and 64-bit rpm  work together and 64x versions as an add on. I have both of them installed on my system.

 For 32bit version when you install on 64bit machine you need the --force  --oldpackeges  option

rpm -iv --force --oldpackeges glibc-devel-2.3.4-2.39.i386.rpm


2) Exception String: Error in invoking target 'all_no_orcl' of makefile '/home/oracle/10.2.0/db_1/rdbms/lib/ins_rdbms.mk'.

Solution:
Install rpm
binutils-2.15.92.0.2.15 (x86_64)
binutils-2.15.92.0.2.13.0.0.0.2 (x86_64)

Query:
# rpm --query --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" binutils

Output:
binutils-2.15.92.0.2.15 (x86_64)
binutils-2.15.92.0.2.10.EL4 (i386)
binutils-2.15.92.0.2.13.0.0.0.2 (x86_64)

3) Get ORA-12547 :Tns Lost Contact when creating database using DBCA
Solution:
Install rpm libaio-0.1.3.105-2.x86_64.rpm

Query:
# rpm --query --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" libaio

Output:
libaio-0.3.103.3 (i386)
libaio-0.3.105.2 (x86_64)


No comments: