| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- spring:
- profiles:
- active: agentLv
- ---
- server:
- port: 9017
- tomcat:
- uri-encoding: utf-8
- # 注册中心配置
- eureka:
- client:
- service-url:
- defaultZone: http://eureka-depot-tj:9001/eureka/
- instance:
- prefer-ip-address: true
- # 每隔10s发送一次心跳(默认30s)
- lease-renewal-interval-in-seconds: 10
- # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
- lease-expiration-duration-in-seconds: 30
- spring:
- profiles: agentLv
- application:
- name: depot-monitor
- # 数据库配置
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- url: jdbc:gbasedbt-sqli://101.36.160.140:19089/depot:INFORMIXSERVER=ol_gbasedbt1210;NEWCODESET=GB18030,GB18030-2000,5488;DB_LOCALE=zh_cn.GB18030-2000;GL_USEGLU=1;IFX_USE_STRENC=true;characterEncoding=utf8;
- username: gbasedbt
- password: cDbK2S0go8
- driver-class-name: com.gbasedbt.jdbc.IfxDriver
- # 缓存配置
- session:
- store-type: redis
- redis:
- database: 2
- host: 192.168.123.98
- port: 6666
- password: depotredis
- timeout: 3000
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 8
- min-idle: 0
- # 静态资源配置
- resources:
- static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
- servlet:
- multipart:
- enabled: true
- max-file-size: 10MB
- max-request-size: 50MB
- web:
- upload-path: D:/depotImg
- # 视频监测记录保存位置
- monitor:
- monitoring-path: /home/monitorzd
- # 短信猫配置
- sendMessage:
- com: COM4
- modem: modem.com4
- windows-path: E:/monitorzd/
- ---
- server:
- port: 9017
- tomcat:
- uri-encoding: utf-8
- # 注册中心配置
- eureka:
- client:
- service-url:
- defaultZone: http://192.168.123.98:9001/eureka/
- instance:
- prefer-ip-address: true
- # 每隔10s发送一次心跳(默认30s)
- lease-renewal-interval-in-seconds: 10
- # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
- lease-expiration-duration-in-seconds: 30
- spring:
- profiles: dev
- application:
- name: depot-monitor-lv
- # 数据库配置
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- url: jdbc:gbasedbt-sqli://192.168.123.38:9099/depot:INFORMIXSERVER=depot;NEWCODESET=GBK,8859-1,819;GL_USEGLU=1;IFX_USE_STRENC=true;characterEncoding=utf8;DB_LOCALE=zh_cn.GB18030-2000
- username: gbasedbt
- password: depot123456
- driver-class-name: com.gbasedbt.jdbc.IfxDriver
- # 缓存配置
- session:
- store-type: redis
- redis:
- database: 2
- host: 192.168.123.98
- port: 6666
- password: depotredis
- timeout: 3000
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 8
- min-idle: 0
- # 静态资源配置
- resources:
- static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
- servlet:
- multipart:
- enabled: true
- max-file-size: 10MB
- max-request-size: 50MB
- web:
- upload-path: D:/depotImg
- # 视频监测记录保存位置
- monitor:
- monitoring-path: /home/monitorzd
- # 短信猫配置
- sendMessage:
- com: COM4
- modem: modem.com4
- logging.level.com.chinaitop.depot.agent.crk.mapper: debug
|