• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

WebLogic8.1 Oracle8i connection problem

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am getting folowing error, while trying to run weblogic server 8.1 on solaris platform.


Warning> <JDBC> <BEA-001129> <Received exception while creating connection for pool "oraclePool": Io exception: The Network Adapter could not establish the connection>


In startWeblogic.sh i hv added following to add oci817_8 into path:


if [ -n "$LD_LIBRARY_PATH" ]
then
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$WL_HOME/lib/solaris:$WL_HOME/lib/solaris/oci817_8
else
LD_LIBRARY_PATH=$WL_HOME/lib/solaris:$WL_HOME/lib/solaris/oci817_8
fi

export LD_LIBRARY_PATH
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"


pool propaerties have defined as :

user=username
url=jdbc racle:thin:@database_server:1581 racle81 (we hv oracle on 1581 port)
dll=ocijdbc8
driver=oracle.jdbc.driver.OracleDriver
protocol=thin



Can any body can give idea where i am wrong ?

Thanks in advance,

Dimple
[ September 20, 2004: Message edited by: dimple sharma ]
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try the following ..

1. Do a tnsping to your database, to verify if the database is accesible
2. verify if you have the ${ORACLE_HOME}/jdbc/lib/classes12.zip in oyur classpath.
reply
    Bookmark Topic Watch Topic
  • New Topic