Advertisement
Guest User

Untitled

a guest
May 14th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4. This file stores bootstrap properties needed by Openfire.
  5. Property names must be in the format: "prop.name.is.blah=value"
  6. That will be stored as:
  7. <prop>
  8. <name>
  9. <is>
  10. <blah>value</blah>
  11. </is>
  12. </name>
  13. </prop>
  14.  
  15. Most properties are stored in the Openfire database. A
  16. property viewer and editor is included in the admin console.
  17. -->
  18. <!-- root element, all properties must be under this element -->
  19. <jive>
  20. <adminConsole>
  21. <!-- Disable either port by setting the value to -1 -->
  22. <port>9090</port>
  23. <securePort>9091</securePort>
  24. </adminConsole>
  25. <locale>pt_BR</locale>
  26. <!-- Network settings. By default, Openfire will bind to all network interfaces.
  27. Alternatively, you can specify a specific network interfaces that the server
  28. will listen on. For example, 127.0.0.1. This setting is generally only useful
  29. on multi-homed servers. -->
  30. <!--
  31. <network>
  32. <interface></interface>
  33. </network>
  34. -->
  35. <connectionProvider>
  36. <className>org.jivesoftware.database.EmbeddedConnectionProvider</className>
  37. </connectionProvider>
  38. <database>
  39. <defaultProvider>
  40. <driver>com.mysql.jdbc.Driver</driver>
  41. <serverURL>jdbc:mysql://astroman.liec.ufscar.br:3306/openfire</serverURL>
  42. <username>openfire</username>
  43. <password>*****</password>
  44. <testSQL>select 1</testSQL>
  45. <testBeforeUse>true</testBeforeUse>
  46. <testAfterUse>true</testAfterUse>
  47. <minConnections>5</minConnections>
  48. <maxConnections>25</maxConnections>
  49. <connectionTimeout>1.0</connectionTimeout>
  50. </defaultProvider>
  51. </database>
  52. <setup>true</setup>
  53. </jive>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement