Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. cat server.cfg
  2. main_collective = mcollective
  3. collectives = mcollective
  4. libdir = /usr/libexec/mcollective
  5. logfile = /var/log/mcollective.log
  6. loglevel = info
  7. daemonize = 1
  8.  
  9. # Plugins
  10. securityprovider = ssl
  11. #plugin.psk = unset
  12.  
  13. connector = activemq
  14. plugin.activemq.pool.size = 1
  15. plugin.activemq.pool.1.host = url.of.box.withactivemq
  16. plugin.activemq.pool.1.port = 61614
  17. plugin.activemq.pool.1.user = mcollective
  18. plugin.activemq.pool.1.password = marionette
  19. #New stuff
  20. plugin.activemq.pool.1.ssl = true
  21. plugin.activemq.pool.1.ssl.ca = /var/lib/puppet/ssl/certs/ca.pem
  22. plugin.activemq.pool.1.ssl.key = /var/lib/puppet/ssl/private_keys/validcertname.pem
  23. plugin.activemq.pool.1.ssl.cert = /var/lib/puppet/ssl/certs/validcertname.pem
  24. plugin.activemq.pool.1.ssl.fallback = 0
  25. plugin.activemq.stomp_1_0_fallback = 0
  26. plugin.activemq.heartbeat_interval = 30
  27. plugin.activemq.max_hbread_fails = 2
  28. plugin.activemq.max_hbrlck_fails = 0
  29.  
  30. # Facts
  31. factsource = yaml
  32. plugin.yaml = /etc/mcollective/facts.yaml
  33.  
  34.  
  35. cat client.cfg
  36. main_collective = mcollective
  37. collectives = mcollective
  38. libdir = /usr/libexec/mcollective
  39. logger_type = console
  40. loglevel = warn
  41.  
  42. # Plugins
  43. securityprovider = psk
  44. plugin.psk = unset
  45. #plugin.ssl_server_private = /var/lib/puppet/ssl/private_keys/validcertname.pem
  46. #plugin.ssl_server_public = /var/lib/puppet/ssl/certs/validcertname.pem
  47. #plugin.ssl_client_cert_dir = /var/lib/puppet/ssl/certs
  48.  
  49. connector = activemq
  50. #New setting
  51. direct_addressing = 1
  52. plugin.activemq.max_reconnect_attempts = 5
  53. plugin.activemq.pool.1.ssl.ca = /etc/mcollective/ssl/activemqssl/ca.pem
  54. plugin.activemq.pool.1.ssl.cert = /etc/mcollective/ssl/activemqssl/userclient-cert.pem
  55. plugin.activemq.pool1.ssl.key = /etc/mcollective/ssl/activemqssl/mcoclient-public.pem
  56. plugin.activemq.pool.1.ssl.fallback = true
  57. # Old Settings
  58. plugin.activemq.pool.size = 1
  59. plugin.activemq.pool.1.host = url.of.box.withactivemq
  60. plugin.activemq.pool.1.port = 61614
  61. plugin.activemq.pool.1.user = mcollective
  62. plugin.activemq.pool.1.password = marionette
  63. plugin.activemq.pool.l.ssl = true
  64.  
  65. # Facts
  66. factsource = yaml
  67. plugin.yaml = /etc/mcollective/facts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement