Myth原始碼解析系列之八- myth-admin事務管理後臺

有生發表於2018-01-15

分散式事務的跟蹤管理後臺

##1、配置詳解


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
複製程式碼

2、修改本專案static 資料夾下的 index.html

<!--href 修改成你的ip 埠-->
<a id="serverIpAddress" style="display: none" href="http://172.16.104.14:8888/myth-admin">
複製程式碼

3、執行 MythAdminApplication 中的main方法。

4、瀏覽器訪問 http://127.0.0.1:8888/myth-admin/index.html ,輸入使用者名稱,密碼登入

admin01

admin02

大家有任何問題或者建議歡迎溝通 ,歡迎加入QQ群:162614487 進行交流

相關文章