概述
Seata 分布式事务需要 Seata Seaver 支持,Seata Server在 架构中扮演着 事务管理器的角色。Seata 服务需要往 Nacos 注册中心注册、以及读取配置文件,因此 Seata 启动前需要部署 Nacos 环境。
安装包下载
下载地址: https://download.csdn.net/download/lmj3732018/88867613
安装步骤
解压
tar -xf seata-server-1.7.0.tar.gz
创建数据库
需要创建一个名为 seata 的数据库,建立相应的数据库表用来存储事务数据,数据库脚本获取地址:https://github.com/apache/incubator-seata/blob/v1.7.0/script/server/db/mysql.sql
Nacos配置
nacos 的命名空间、dataId、group等信息均可自定义,会在下文中使用到。
配置内容
# 微服务里配置与这里一致 service.vgroupMapping.default_tx_group=default # 存储模式 store.mode=db store.db.datasource=druid store.db.dbType=mysql # 需要根据mysql的版本调整driverClassName # mysql8及以上版本对应的driver:com.mysql.cj.jdbc.Driver # mysql8以下版本的driver:com.mysql.jdbc.Driver store.db.driverClassName=com.mysql.cj.jdbc.Driver # 注意根据生产实际情况调整参数host和port store.db.url=jdbc:mysql://192.168.122.98:3306/seata?useUnicode=true&rewriteBatchedStatements=true # 数据库用户名密码 store.db.user=root store.db.password=admin@123456
修改配置文件
seata 的配置文件在 conf/application.yml 中,其中 nacos 的配置,注意与上面 nacos 配置中心的内容对应
server: port: 7091 spring: application: name: seata-server logging: config: classpath:logback-spring.xml file: path: ./logs/ # seata登入账户密码 console: user: username: seata password: seata # seata: config: # support: nacos, consul, apollo, zk, etcd3 type: nacos nacos: server-addr: 192.168.122.120:8848 group: SEATA_GROUP data-id: seataServer.properties namespace: seata-id username: nacos password: nacos registry: # support: nacos, eureka, redis, zk, consul, etcd3, sofa type: nacos nacos: application: seata-server group: SEATA_GROUP server-addr: 192.168.122.120:8848 # 这个参数在每个微服务seata时会用到这是集群参数 cluster: default username: nacos password: nacos namespace: seata-id security: secretKey: SeataSecretKey0c382ef121d778043159209298fd40bf3850a017 tokenValidityInMilliseconds: 1800000 ignore: urls: /,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.jpeg,/**/*.ico,/api/v1/auth/login,/metadata/v1/**
启动服务
./bin/seata-server.sh
登入服务
http://192.168.xxx.xxx:7091/#/login
账号:seata
密码:seata