Advertisement

2023-04-03 DM服务-编译启动与配置

阅读量:

摘要:

完成DM服务的编译过程、启动操作及相关必需配置项的记录。

代码仓库:

https://github.com/adofsauron/tiflow-dev/tree/main/trunk/tiflow-6.0.0

依赖:

复制代码
    go version go1.19.2 linux/amd64
    
    

编译:

https://github.com/adofsauron/tiflow-dev/blob/main/trunk/tiflow-6.0.0/build.sh

复制代码
 #!/bin/bash

    
  
    
 go env -w GOPROXY=https://goproxy.cn,direct 
    
  
    
  
    
 chmod +x scripts/*.sh
    
  
    
 go mod tidy
    
 go mod download
    
 go mod vendor
    
  
    
 make build
    
    
    
    

单节点Master配置分析

复制代码
 # Master Configuration.

    
  
    
 name = "master1"

全部评论 (0)

还没有任何评论哟~