hos-broker.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. spring:
  2. application:
  3. name: hos-broker
  4. server:
  5. port: 8099
  6. contextPath:
  7. sessionTimeout: 300
  8. security:
  9. basic:
  10. enabled: false
  11. # the name of Camel
  12. camel:
  13. springboot:
  14. name: hos-broker
  15. ---
  16. spring:
  17. profiles: dev
  18. activemq:
  19. broker-url: tcp://172.19.103.57:61616
  20. user: admin
  21. password: admin
  22. data:
  23. mongodb:
  24. host: 172.19.103.57
  25. port: 27017
  26. username: esb
  27. password: esb
  28. authenticationDatabase: admin
  29. database: log
  30. gridFsDatabase: dfs
  31. eureka:
  32. client:
  33. serviceUrl:
  34. defaultZone: http://192.168.1.221:8761/eureka/
  35. log:
  36. path: D://logs/logback/dev
  37. level: info
  38. hos:
  39. filesystem:
  40. url: http://172.19.103.57:9010/dfs/file
  41. arbiter:
  42. enable: true
  43. url: http://localhost:10135
  44. rest:
  45. url: http://localhost:8088
  46. timer:
  47. period: 10000
  48. tenant:
  49. name: jkzl
  50. mycat:
  51. path: /usr/local/mycat/ ##mycat的安装目录
  52. #jcraft shell操作
  53. jcraft:
  54. host: 172.19.103.57
  55. port: 22
  56. user: rootxx
  57. password: ceshi
  58. hzy:
  59. hello: hello dev !!!
  60. ---
  61. spring:
  62. profiles: test
  63. activemq:
  64. broker-url: tcp://172.19.103.42:61616 # activeMq地址
  65. user: admin
  66. password: admin
  67. data:
  68. mongodb:
  69. host: 172.19.103.42 # mongodb 连接信息
  70. port: 27017
  71. username: esb
  72. password: esb
  73. authenticationDatabase: admin
  74. database: log
  75. gridFsDatabase: dfs
  76. eureka:
  77. client:
  78. serviceUrl:
  79. defaultZone: http://192.168.1.221:8761/eureka/ # eureka发现服务中心地址
  80. log:
  81. path: /usr/local/esb/logs/hos-broker #日志输出地址
  82. level: info
  83. hos:
  84. filesystem:
  85. url: http://172.19.103.37:9010/dfs/file #文件服务器地址
  86. arbiter:
  87. enable: true
  88. url: http://172.19.103.37:10135 # arbiter 的连接地址
  89. rest:
  90. url: http://172.19.103.37:8088 # 采集上传档案等服务连接地址
  91. timer:
  92. period: 10000
  93. tenant:
  94. name: jkzl
  95. mycat:
  96. path: /usr/local/mycat/ ##mycat的安装目录
  97. #jcraft shell操作,连接终端服务器的后门信息
  98. jcraft:
  99. host: 172.19.103.37
  100. port: 22
  101. user: root
  102. password: ceshi
  103. hzy:
  104. hello: hello test !!!