Advertisement
Guest User

Untitled

a guest
Apr 16th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. <jdbc-connection-pool validation-table-name="DUAL" steady-pool-size="20" statement-cache-size="100" associate-with-thread="true" statement-timeout-in-seconds="30" idle-timeout-in-seconds="60" max-wait-time-in-millis="2000" validate-atmost-once-period-in-seconds="20" datasource-classname="oracle.jdbc.pool.OracleDataSource" pool-resize-quantity="5" max-pool-size="60" res-type="javax.sql.DataSource" name="dbPool" is-connection-validation-required="true">
  2. <property name="driverClass" value="oracle.jdbc.OracleDriver"></property>
  3. <property name="user" value="xxx"></property>
  4. <property name="url" value="jdbc:oracle:thin:@(DESCRIPTION=(ENABLE=BROKEN)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=orcl)))"></property>
  5. <property name="password" value="xxx"></property>
  6. <property name="portNumber" value="1521"></property>
  7. <property name="databaseName" value="orcl"></property>
  8. <property name="serverName" value="127.0.0.1"></property>
  9. <property name="oracle.jdbc.ReadTimeout" value="300000"></property>
  10. <property name="oracle.net.CONNECT_TIMEOUT" value="10000"></property>
  11. </jdbc-connection-pool>
  12.  
  13. javax.enterprise.resource.resourceadapter.com.sun.enterprise.resource.allocator|_ThreadID=152;_ThreadName=Thread-2;|RAR5038:Unexpected exception while creating resource for pool dbPool. Exception : javax.resource.spi.ResourceAllocationException: Connection could not be allocated because: IO Error: Socket read timed out
  14. [...]
  15. Local Exception Stack:
  16. Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DatabaseException
  17. Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: IO Error: Socket read timed out
  18.  
  19. Fatal NI connect error 12560, connecting to:
  20. (LOCAL=NO)
  21.  
  22. VERSION INFORMATION:
  23. TNS for 64-bit Windows: Version 12.1.0.1.0 - Production
  24. Oracle Bequeath NT Protocol Adapter for 64-bit Windows: Version 12.1.0.1.0 - Production
  25. Windows NT TCP/IP NT Protocol Adapter for 64-bit Windows: Version 12.1.0.1.0 - Production
  26. Time: 13-JUN-2014 03:14:49
  27. Tracing not turned on.
  28. Tns error struct:
  29. ns main err code: 12560
  30.  
  31. TNS-12560: TNS:protocol adapter error
  32. ns secondary err code: 0
  33. nt main err code: 0
  34. nt secondary err code: 0
  35. nt OS err code: 0
  36. opiodr aborting process unknown ospid (3404) as a result of ORA-609
  37.  
  38. - Sqlnet.ora:
  39. SQLNET.INBOUND_CONNECT_TIMEOUT=180
  40. SQLNET.EXPIRE_TIME=5
  41. - Listener.ora:
  42. INBOUND_CONNECT_TIMEOUT_LISTENER_IPC=120
  43.  
  44. jdbc:oracle:thin:@(DESCRIPTION=(ENABLE=BROKEN)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY = LISTENER)))(CONNECT_DATA=(SERVICE_NAME=orcl)))
  45.  
  46. set linesize 1000
  47. set pagesize 1000
  48. select *
  49. from dba_profiles
  50. order by profile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement