Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <datasource>
  3. <name>WSO2_SHARED_REG_DB</name>
  4. <description>The datasource used for shared config and governance registry</description>
  5. <jndiConfig>
  6. <name>jdbc/WSO2SharedDB</name>
  7. </jndiConfig>
  8. <definition type="RDBMS">
  9. <configuration>
  10. <url>jdbc:mysql://localhost:3306/wso2conreg_db</url>
  11. <username>root</username>
  12. <password>root</password>
  13. <driverClassName>com.mysql.jdbc.Driver</driverClassName>
  14. <maxActive>50</maxActive>
  15. <maxWait>60000</maxWait>
  16. <testOnBorrow>true</testOnBorrow>
  17. <validationQuery>SELECT 1</validationQuery>
  18. <validationInterval>30000</validationInterval>
  19. </configuration>
  20. </definition>
  21. </datasource>
  22. <datasource>
  23. <name>WSO2_UM_DB</name>
  24. <description>The datasource used for registry and user manager</description>
  25. <jndiConfig>
  26. <name>jdbc/WSO2UmDB</name>
  27. </jndiConfig>
  28. <definition type="RDBMS">
  29. <configuration>
  30. <url>jdbc:mysql://localhost:3306/wso2conum_db</url>
  31. <username>root</username>
  32. <password>root</password>
  33. <driverClassName>com.mysql.jdbc.Driver</driverClassName>
  34. <maxActive>50</maxActive>
  35. <maxWait>60000</maxWait>
  36. <testOnBorrow>true</testOnBorrow>
  37. <validationQuery>SELECT 1</validationQuery>
  38. <validationInterval>30000</validationInterval>
  39. </configuration>
  40. </definition>
  41. </datasource>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement