Advertisement
Guest User

Untitled

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