very urgent, please advice...oracle netca, dbca hangs during install [message #98908] |
Thu, 07 August 2003 08:48 |
kshathrya
Messages: 29 Registered: October 2001
|
Junior Member |
|
|
hi guys, i am trying to install oracle 9.2.0.1 in redhat 9.
during install, when it comes to the optional components install/configuration (netca, dbca, http) i am getting the following errors...well it hangs ther for ever...
oracle net configuration assistant error:
parsing command line arguments:
Parameter "orahome" = /opt/ora9/product/9.2
Parameter "instype" = typical
Parameter "inscomp" = client,oraclenet,javavm,server,ano
Parameter "insprtcl" = tcp,tcps
Parameter "cfg" = local
Parameter "authadp" = NO_VALUE
Parameter "nodeinfo" = /responseFile
java.lang.ArrayIndexOutOfBoundsException: 15
at oracle.net.ca.CmdlineArgs.parseArgs(CmdlineArgs.java)
at oracle.net.ca.NetCA.<init>(NetCA.java)
at oracle.net.ca.NetCA.main(NetCA.java)
# Oracle database configuration assistant error:
No output available for this tool.
#starting http server:
/opt/ora9/product/9.2/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
/opt/ora9/product/9.2/Apache/Apache/bin/apachectl startssl: httpd could not be startedg started
please advice...
|
|
|
|
|
Re: very urgent, please advice...oracle netca, dbca hangs during install [message #155281 is a reply to message #98908] |
Fri, 13 January 2006 08:52 |
rajeshkumar
Messages: 5 Registered: October 2005 Location: New Delhi
|
Junior Member |
|
|
This error means, that oracle is trying to load a library it cannot find, but which is needed to run. These libraries sit in /lib, /usr/lib and /usr/local/lib. If the library is on your hd, then just run ldconfig (as root). Make sure that the path to the library is lited in the file /etc/ld.so.conf. If the library is not on your hd, you have to install it from your Linux cd. A search on google revealed, that libgmodule is in the package libc or other (check the documentation). To install the library, do the following:
- mount the cdrom
- cd into <path_to_cdrom>
- run rpm
- select current
don't install anything until you find glib/libc. If it still not working, run ldconfig and all should be well.
Good luck
Rajesh Kumar
|
|
|