【Seata】安装 - mac

本文档介绍了在Mac上安装Seata的步骤,包括从官网下载Seata,详细修改file.conf和registry.conf配置文件,特别是registry部分的配置,以及在MySQL中创建Seata所需的3张表。此外,还提到了如何使用Nacos作为配置中心,并提供了相关脚本和配置文件链接。
摘要由CSDN通过智能技术生成

1 下载

官网:https://seata.io/zh-cn/index.html
在这里插入图片描述

2 修改配置文件

在这里插入图片描述

2.1 file.conf

在这里插入图片描述

在这里插入图片描述
还有userpassword

2.2 registry.conf

1)registry

在这里插入图片描述

2)config

配置中心

在这里插入图片描述

dataId:通过dataId配置

  1. 从v1.4.2版本开始,已支持从一个Nacos dataId中获取所有配置信息,你只需要额外添加一个dataId配置项。
  2. 首先你需要在nacos新建配置,此处dataId为seataServer.properties,配置内容参考https://github.com/seata/seata/tree/develop/script/config-center 的config.txt并按需修改保存
  3. 在client参考如下配置进行修改,
seata:
 config:
   type: nacos
   nacos:
     server-addr: 127.0.0.1:8848
     group : "SEATA_GROUP"
     namespace: ""
     dataId: "seataServer.properties"
     username: "nacos"
     password: "nacos"

通过脚本上传配置到Nacos
参考https://github.com/seata/seata/tree/develop/script/config-center 的config.txt并修改,之后运行仓库中提供的nacos脚本,将信息提交到nacos控制台,如果有需要更改,可直接通过控制台更改.
eg: sh ${SEATAPATH}/script/config-center/nacos/nacos-config.sh -h localhost -p 8848 -g SEATA_GROUP -t 5a3c7d6c-f497-4d68-a71a-2e5e3340b3ca -u username -w password

下载 nacos-config.脚本config.txt

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
打开 git bash 或 Linux 类命令,执行sh脚本

# -h 主机,你可以使用localhost,-p 端口号 你可以使用8848, -t 命名空间ID, -u 用户名, -p 密码
sh nacos-config.sh -h localhost -p 8848 -g SEATA_GROUP -t .... -u nacos -nacos

配置到nacos。成功!
在这里插入图片描述


但是,配置实在太多了,找一个参数,闹大心。
所以用 dataId="seataServer.properties"

在这里插入图片描述

在这里插入图片描述
ok了。

3 MySQL建表

https://github.com/seata/seata/blob/develop/script/server/db/mysql.sql

3张表

-- -------------------------------- The script used when storeMode is 'db' --------------------------------
-- the table to store GlobalSession data
CREATE TABLE IF NOT EXISTS `global_table`
(
    `xid`                       VARCHAR(128) NOT NULL,
    
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值