svr-pack-mgr.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. logging:
  2. level:
  3. com:
  4. netflix: INFO
  5. org:
  6. springframework:
  7. web: INFO
  8. hibernate: ERROR
  9. fast-dfs:
  10. pool:
  11. init-size: 5
  12. max-size: 20
  13. wait-time: 500
  14. connect-timeout: 2
  15. network-timeout: 30
  16. charset: ISO8859-1
  17. http:
  18. tracker-http-port: 80
  19. anti-steal-token: no
  20. secret-key: FastDFS1234567890
  21. spring:
  22. # REDIS
  23. redis:
  24. database: 0 # Database index used by the connection factory.
  25. port: 6379 # Redis server port.
  26. password: # Login password of the redis server.
  27. timeout: 0 # Connection timeout in milliseconds.
  28. #sentinel:
  29. # master: # Name of Redis server.
  30. # nodes: # Comma-separated list of host:port pairs.
  31. pool:
  32. max-active: 8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
  33. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  34. max-wait: -1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
  35. min-idle: 1 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
  36. datasource:
  37. driver-class-name: com.mysql.jdbc.Driver
  38. max-active: 20
  39. max-idle: 8
  40. min-idle: 8
  41. validation-query: SELECT 1
  42. test-on-borrow: true
  43. ---
  44. spring:
  45. profiles: dev
  46. datasource:
  47. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  48. username: ha
  49. password: ha
  50. redis:
  51. host: 192.168.1.220 # Redis server host.
  52. metrics:
  53. export:
  54. statsd:
  55. host: 192.168.1.221
  56. port: 8125
  57. fast-dfs:
  58. tracker-server: 172.19.103.54:22122
  59. public-server: http://172.19.103.54:22122
  60. ---
  61. spring:
  62. profiles: alpha
  63. datasource:
  64. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  65. username: ha
  66. password: ha
  67. redis:
  68. host: 192.168.1.220 # Redis server host.
  69. metrics:
  70. export:
  71. statsd:
  72. host: 192.168.1.221
  73. port: 8125
  74. fast-dfs:
  75. tracker-server: 172.19.103.54:22122
  76. public-server: http://172.19.103.54:22122
  77. ---
  78. spring:
  79. profiles: test
  80. datasource:
  81. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  82. username: weifuwu
  83. password: weifuwu
  84. redis:
  85. host: 172.19.103.47 # Redis server host.
  86. metrics:
  87. export:
  88. statsd:
  89. host: 192.168.1.221
  90. port: 8125
  91. fast-dfs:
  92. tracker-server: 172.19.103.13:22122
  93. public-server: http://172.19.103.52:80
  94. ---
  95. spring:
  96. profiles: prod
  97. datasource:
  98. url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  99. username: ha
  100. password: jkzlxm
  101. redis:
  102. host: 11.1.2.20 # Redis server host.
  103. fast-dfs:
  104. tracker-server: 11.1.2.9:22122
  105. public-server: http://ds.ehr.yihu.com:22122