分佈式事務的跟蹤管理後臺html
##一、配置詳解java
server.port=8888
server.context-path=/myth-admin
server.address=0.0.0.0
spring.application.name=myth-admin
#激活方式 指的是存儲事務日誌採起的方式 同業務模塊同樣
spring.profiles.active=db
# myth 管理後臺用戶名
myth.admin.userName=admin
# myth 管理後臺密碼
myth.admin.password=admin
# 各項目的事務日誌存儲路徑的後綴,這裏必定須要指定
myth.repository.suffix.list=account-service,inventory-service,order-service
# 各項目支持的序列化方式 每一個項目須要配置成同樣的
myth.serializer.support=kryo
myth.retry.max=10
#dbSuport
myth.db.driver=com.mysql.jdbc.Driver
myth.db.url=jdbc:mysql://localhost:3306/myth?useUnicode=true&characterEncoding=utf8
myth.db.username=root
myth.db.password=123456
#redis
myth.redis.cluster=false
myth.redis.hostName=localhost
myth.redis.port=6379
myth.redis.password=
#myth.redis.clusterUrl=127.0.0.1:70001;127.0.1:7002
#mongo
myth.mongo.url=localhost:27017
myth.mongo.dbName=happylife
#myth.mongo.userName=xiaoyu
myth.mongo.password=123456
#zookeeper
myth.zookeeper.host=192.168.156.101:2181
myth.zookeeper.sessionTimeOut=200000
複製代碼
<!--href 修改爲你的ip 端口-->
<a id="serverIpAddress" style="display: none" href="http://172.16.104.14:8888/myth-admin">
複製代碼
你們有任何問題或者建議歡迎溝通 ,歡迎加入QQ羣:162614487 進行交流mysql