1.Spring Cloud Alibaba版本组件关系:https://github.com/alibaba/spring-cloud-alibaba/wiki/版本说明
2.各版本下载地址:https://github.com/seata/seata/releases
3.git网址:https://github.com/seata/seata.github.io
4. seata文档:https://seata.io/zh-cn/docs/overview/what-is-seata.html
快速开始:http://seata.io/zh-cn/docs/user/quickstart.html
seata参数配置:https://seata.io/zh-cn/docs/user/configurations.html
5.数据库脚本地址:seata源码\script\server\db
6.修改seata-server的配置文件:
路径:{seata-server}\seata\conf
修改配置文件:
registry.conf :1)registry:修改项目的注册中心类型 type, 修改注册中心的配置地址;
2)config:配置的type和对应配置的配置,如果选择file需要修改对应file.conf中的配置;
7.启动命令:
Usage: sh seata-server.sh(for linux and mac) or cmd seata-server.bat(for windows) [options]
Options:
--host, -h
The host to bind.
Default: 0.0.0.0
--port, -p
The port to listen.
Default: 8091
--storeMode, -m
log store mode : file、db
Default: file
--help
e.g.
sh seata-server.sh -p 8091 -h 127.0.0.1 -m file