【seatunnel】数据同步软件安装
下载
wget https://dlcdn.apache.org/seatunnel/2.3.8/apache-seatunnel-2.3.8-bin.tar.gz
wget https://dlcdn.apache.org/seatunnel/seatunnel-web/1.0.2/apache-seatunnel-web-1.0.2-bin.tar.gz
1、安装seatunnel Server
解压
tar zxvf apache-seatunnel-2.3.8-bin.tar.gz
修改配置文件
vim /etc/profile
在文档尾部追加如下内容
export SEATUNNEL_HOME=/app/apache-seatunnel-2.3.8
export PATH=SEATUNNEL_HOME/bin:$PATH
/app/apache-seatunnel-2.3.8
是软件解压处理的路径
下载seatunnel相关jar包
vim /app/apache-seatunnel-2.3.8/bin/install-plugin.sh
将${SEATUNNEL_HOME}/mvnw为mvn
然后执行命令
sh /app/apache-seatunnel-2.3.8/bin/install-plugin.sh
此过程比较慢需要耐心等待
启动后端服务
静默启动
nohup sh /app/apache-seatunnel-2.3.8/bin/seatunnel-cluster.sh 2>&1 &