raincat-admin 启动教程

启动方式一:自己打包进行部署。

  • 首先用户使用的JDK必须是1.8+ 本地安装了git ,maven ,执行以下命令
  1. git clone https://github.com/yu199195/Raincat.git
  2. maven clean install
  • 使用你的开发工具打开项目,比如idea Eclipse

修改application.yml

  1. server:
  2. port: 8888
  3. context-path: /admin
  4. spring:
  5. application:
  6. name: raincat-admin
  7. profiles:
  8. active: db
  9. tx:
  10. admin :
  11. userName : admin
  12. password : admin
  13. redis:
  14. hostName: localhost
  15. port : 6379
  16. #password:
  17. cluster : false
  18. # nodes: 127.0.0.1:70001;127.0.1:7002
  19. # redirects: 20
  • userName,password 是你登录的用户名与密码。

  • reids配置为你的txManager的redis配置。

  • spring.profiles.active 是你激活的方式,意思就是你采用什么方式来存储日志的,就激活什么方式,然后修改对应的yml。比如这里使用的db那么我们找到application-db.yml

  1. recover:
  2. application:
  3. list : alipay-service,wechat-service,pay-service
  4. serializer :
  5. support: kryo
  6. retry :
  7. max: 10
  8. db:
  9. driver : com.mysql.jdbc.Driver
  10. url: jdbc:mysql://localhost:3306/tx?useUnicode=true&characterEncoding=utf8
  11. username: root
  12. password: 123456
  • application.list是指你微服务的applicationName,用逗号分隔。

  • serializer : 事务日志的序列化方式

  • retry.max : 最大重试次数。

修改index.html

  1. <!--href 修改成你的ip 端口-->
  2. <a id="serverIpAddress" style="display: none" href="http://192.168.1.132:8888/admin">

运行 AdminApplication 中的main方法。

在浏览器访问 http://ip:port/admin ,输入用户名,密码登录。

启动方式二:从maven中心仓库获取adminjar包 .

  1. <dependency>
  2. <groupId>org.dromara</groupId>
  3. <artifactId>raincat-admin</artifactId>
  4. <version>2.0.0-RELEASE</version>
  5. </dependency>
  • 创建config文件夹,创建application.yml等,然后修改启动。