Hi,
I am currently installing OTM 5.5 CU05 under the following environment:
Application / Web Servers : RedHat AS 4.7 64bit
Oracle Database: 10.2.0.3 Solaris 64bit RAC
The issue that I have hit is while running dbpatch_55.sql update_content.sh fails with the following stack trace:
java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:112)
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:146)
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:255)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnecti on.java:387)
at oracle.jdbc.driver.PhysicalConnection.<init>(Physi calConnection.java:439)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnect ion.java:165)
at oracle.jdbc.driver.T4CDriverExtension.getConnectio n(T4CDriverExtension.java:35)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriv er.java:801)
at java.sql.DriverManager.getConnection(DriverManager .java:512)
at java.sql.DriverManager.getConnection(DriverManager .java:171)
at glog.database.admin.CSVUtil.initializeConnection(C SVUtil.java:279
at glog.database.admin.CSVUtil.run(CSVUtil.java:2689)
at glog.database.admin.CSVUtil.main(CSVUtil.java:3017 )
The modifications that I have made to glog.properties are as follows:
# db server URL and information
#dbserver=
#glog.database.sid=
#glog.database.connectstring=
#glog.database.port=
glog.database.dbaOnly.t2client.connectionURL=jdbc
racle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALAN CE=off)(ADDRESS=(PROTOCOL=TCP)(HOST=atsdbdod01.tol l.com.au)(PORT=1599))(ADDRESS=(PROTOCOL=TCP)(HOST = atsdbdod02.toll.com.au)(PORT = 1599)))(CONNECT_DATA = (service_name= TGFNODE1)))
glog.database.dbathin.t2client.connectionURL=$glog .database.dbaOnly.t2client.connectionURL$
glog.database.DBA.t2client.connectionURL=$glog.dat abase.dbaOnly.t2client.connectionURL$
glog.database.DBADirect.t2client.connectionURL=$gl og.database.dbaOnly.t2client.connectionURL$
glog.database.migration.t2client.connectionURL=$gl og.database.dbaOnly.t2client.connectionURL$
I have tested the connection url through SQL Developer and it works fine. It seems that glog.database.admin.CVSUtil is trying to use commented out properties to build the jdbc connection string. Is that correct? How do we get it to use the connection url?
I would imagine that it is something simple but any help would be greatly appreciated.
Cheers,
--oli
I am currently installing OTM 5.5 CU05 under the following environment:
Application / Web Servers : RedHat AS 4.7 64bit
Oracle Database: 10.2.0.3 Solaris 64bit RAC
The issue that I have hit is while running dbpatch_55.sql update_content.sh fails with the following stack trace:
java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:112)
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:146)
at oracle.jdbc.driver.DatabaseError.throwSqlException (DatabaseError.java:255)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnecti on.java:387)
at oracle.jdbc.driver.PhysicalConnection.<init>(Physi calConnection.java:439)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnect ion.java:165)
at oracle.jdbc.driver.T4CDriverExtension.getConnectio n(T4CDriverExtension.java:35)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriv er.java:801)
at java.sql.DriverManager.getConnection(DriverManager .java:512)
at java.sql.DriverManager.getConnection(DriverManager .java:171)
at glog.database.admin.CSVUtil.initializeConnection(C SVUtil.java:279

at glog.database.admin.CSVUtil.run(CSVUtil.java:2689)
at glog.database.admin.CSVUtil.main(CSVUtil.java:3017 )
The modifications that I have made to glog.properties are as follows:
# db server URL and information
#dbserver=
#glog.database.sid=
#glog.database.connectstring=
#glog.database.port=
glog.database.dbaOnly.t2client.connectionURL=jdbc


glog.database.dbathin.t2client.connectionURL=$glog .database.dbaOnly.t2client.connectionURL$
glog.database.DBA.t2client.connectionURL=$glog.dat abase.dbaOnly.t2client.connectionURL$
glog.database.DBADirect.t2client.connectionURL=$gl og.database.dbaOnly.t2client.connectionURL$
glog.database.migration.t2client.connectionURL=$gl og.database.dbaOnly.t2client.connectionURL$
I have tested the connection url through SQL Developer and it works fine. It seems that glog.database.admin.CVSUtil is trying to use commented out properties to build the jdbc connection string. Is that correct? How do we get it to use the connection url?
I would imagine that it is something simple but any help would be greatly appreciated.
Cheers,
--oli
Comment