123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- spring:
- application:
- name: hos-broker
- server:
- port: 8099
- contextPath:
- sessionTimeout: 300
- security:
- basic:
- enabled: false
- # the name of Camel
- camel:
- springboot:
- name: hos-broker
- ---
- spring:
- profiles: dev
- activemq:
- broker-url: tcp://172.19.103.57:61616
- user: admin
- password: admin
- data:
- mongodb:
- host: 172.19.103.57
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- database: log
- gridFsDatabase: dfs
- eureka:
- client:
- serviceUrl:
- defaultZone: http://192.168.1.221:8761/eureka/
- log:
- path: D://logs/logback/dev
- level: info
- hos:
- filesystem:
- url: http://172.19.103.57:9010/dfs/file
- arbiter:
- enable: true
- url: http://localhost:10135
- rest:
- url: http://localhost:8088
- timer:
- period: 10000
- tenant:
- name: jkzl
- mycat:
- path: /usr/local/mycat/ ##mycat的安装目录
- #jcraft shell操作
- jcraft:
- host: 172.19.103.57
- port: 22
- user: rootxx
- password: ceshi
- hzy:
- hello: hello dev !!!
-
- ---
- spring:
- profiles: test
- activemq:
- broker-url: tcp://172.19.103.42:61616 # activeMq地址
- user: admin
- password: admin
- data:
- mongodb:
- host: 172.19.103.42 # mongodb 连接信息
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- database: log
- gridFsDatabase: dfs
- eureka:
- client:
- serviceUrl:
- defaultZone: http://192.168.1.221:8761/eureka/ # eureka发现服务中心地址
- log:
- path: /usr/local/esb/logs/hos-broker #日志输出地址
- level: info
- hos:
- filesystem:
- url: http://172.19.103.37:9010/dfs/file #文件服务器地址
- arbiter:
- enable: true
- url: http://172.19.103.37:10135 # arbiter 的连接地址
- rest:
- url: http://172.19.103.37:8088 # 采集上传档案等服务连接地址
- timer:
- period: 10000
- tenant:
- name: jkzl
- mycat:
- path: /usr/local/mycat/ ##mycat的安装目录
- #jcraft shell操作,连接终端服务器的后门信息
- jcraft:
- host: 172.19.103.37
- port: 22
- user: root
- password: ceshi
- hzy:
- hello: hello test !!!
|