Hi,
I'm currently trying to install oracle 10g (release 1 10.1.0.3 linux x86) on slackware 10.0 (kernel 2.6.9).
I have followed the instructions from
http://download-east.oracle.com/docs...521_01/toc.htm
During Installation I created a database called train.
I start it using 'lsnrctl start' and
Code:
sqlplus /nolog
SQL> connect / as sysdba
SQL> startup
If I run netmgr now, I can connect to it with scott/tiger and my system account, test works without any problems reported.
I tought great, that's it, and tried to install compiere. But that claim's, it can't connect as 'system'.
So I started reading tutorials again, and noticed a few things:
I can't tnsping the db, neither 'tnsping <oracle_sid>' nor 'tnsping <globalname>' works.
I get the errormessage: oracle tnsping TNS-03505: Failed to resolve name
Also I cant connect using 'sqlplus system/password' or 'sqlplus system/password@train'.
It keeps saying "ERROR: ORA-01017: invalid username/password; logon denied"
Only scott/tiger works here. The password for system is 100% correct (it works via netmgr).
During the installation I had two errormessages, unfortunately I didn't write them down. I choose to continue, and the installation finished succesfully.
This is the part of the log, where I think the error occurred.
Quote:
Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'all_no_orcl' of makefile '/opt/compiere2/app/oracle/OraHome_1/rdbms/lib/ins_rdbms.mk'. See '/opt/compiere2/app/oracle/oraInventory/logs/installActions2005-04-21_04-57-38PM.log' for details.
Exception Severity: 1
|
I needed to force the installer to run, it would just accept RedHat or Suse servers.
Did anybody manage to have it running on slackware 10.0? Or won't it work cause it ain't a RPM based distro?
I'm getting quite frustrated finding the errors, a lot of the documentation and tutorials I read were slightly out of date, and have slightly differences, which variables have to be set to which path. So I'd like to at least know, whether it's just a configuration problem, or if it just won't work.
My bash profile for the oracle user:
Code:
umask 022
export TEMP=/tmp
export TMPDIR=/tmp
export ORACLE_BASE=/opt/compiere2/app/oracle
export ORACLE_SID=train
unset ORACLE_HOME
unset TNS_ADMIN
export ORACLE_HOME=$ORACLE_BASE/OraHome_1
export PATH=$PATH:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
My sqlnet.ora:
Code:
NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
NAMES.DEFAULT_DOMAIN = huberei.net
And the tnsnames.ora
Code:
TRAIN =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = huber.huberei.net)(PORT = 1521))
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = train.huberei.net)
)
)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)
Any help is appreciated, let me know if you need anything else, e.g. the full install log (about 10.000 lines
)
Thx