Installing Oracle 10.2 on Suse Linux 10.2

When installing Oracle 10.2.0.1 client on Suse Linux 10.2, the installation fails with message -

Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2 Failed <<<<

To complete the install, run installer as ./runInstaller -ignoreSysPrereqs
(installation-oracle-on-suse-linux-enterprise-10)

To run Tora, add the following to your profile file

export LD_LIBRARY_PATH=$ORACLE_HOME/lib

And create a tnsnames.ora file in your ORACLE_HOME.
This file lists your Oracle services in the following format -

XE_192.168.1.1=

    (DESCRIPTION =

       (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.1)(PORT = 1521)))

       (CONNECT_DATA = (SID = xe) (SERVER = DEDICATED))

    )

(Re: Error connecting to an Oracle DB)

If Tora is still not connecting to oracle, try exporting TNS_ADMIN environment variable, pointing to the location of tnsnames.ora file -

export TNS_ADMIN=/usr/lib/oracle/xe/app/oracle/product/10.2.0/client/

2 comments ↓

#1 laurentschneider on 04.01.07 at 5:01 pm

)1 (CONNECT_DATA =

is this 1 (one) supposed to be there?

#2 sonnygill on 04.02.07 at 1:54 pm

Corrected. Thanks for pointing that out.
I have no idea how that 1 ended up in there :)

Leave a Comment