This commit is contained in:
Jane
2023-12-22 10:59:10 +08:00
parent 751c43e199
commit d1ede2d4aa
2774 changed files with 291509 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./data-market-service-mapping/data-market-service-mapping.jar --server.port=8823 > data-market-service-mapping.log 2>&1 &

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./data-masterdata-service/data-masterdata-service.jar --server.port=8828 > data-masterdata-service.log 2>&1 &

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./data-metadata-service-console/data-metadata-service-console.jar --server.port=8821 > data-metadata-service-console.log 2>&1 &

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./data-quality-service/data-quality-service.jar --server.port=8826 > data-quality-service.log 2>&1 &

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms1024m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./eureka/eureka.jar --server.port=8610 > eureka.log 2>&1 &

View File

@@ -0,0 +1,24 @@
#!/bin/sh
source /etc/profile
# eureka单独启动
#echo "即将启动任务eureka"
#sh eureka.sh
#sleep 10s
echo "即将启动任务data-market-service-mapping"
sh data-market-service-mapping.sh
echo "即将启动任务master data service"
sh data-masterdata-service.sh
echo "即将启动任务metadata-console"
sh data-metadata-service-console.sh
echo "即将启动任务quality"
sh data-quality-service.sh
echo "即将启动任务workflow"
sh workflow-service.sh

View File

@@ -0,0 +1,25 @@
#!/bin/sh
source /etc/profile
pid=$(ps -ef | grep eureka.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动eureka: $pid"
pid=$(ps -ef | grep data-market-service-mapping.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动data-market-service-mapping: $pid"
pid=$(ps -ef | grep data-masterdata-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动data-masterdata-service: $pid"
pid=$(ps -ef | grep data-metadata-service-console.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动data-metadata-service-console: $pid"
pid=$(ps -ef | grep data-quality-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动data-quality-service: $pid"
pid=$(ps -ef | grep workflow-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "已启动workflow-service: $pid"
echo "启动列表data-market-service-mapping、data-masterdata-service、data-metadata-service-console、data-quality-service、eureka、gateway、workflow-service"

View File

@@ -0,0 +1,51 @@
#!/bin/sh
source /etc/profile
pid=$(ps -ef | grep data-market-service-mapping.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务market service: $pid"
kill -9 $pid
echo "已杀死任务: $pid"
pid=$(ps -ef | grep data-masterdata-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务master data service: $pid"
kill -9 $pid
echo "已杀死任务: $pid"
pid=$(ps -ef | grep data-metadata-service-console.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务metadata-console: $pid"
kill -9 $pid
echo "已杀死任务: $pid"
pid=$(ps -ef | grep data-quality-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务quality: $pid"
kill -9 $pid
echo "已杀死任务: $pid"
pid=$(ps -ef | grep workflow-service.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务workflow: $pid"
kill -9 $pid
echo "已杀死任务: $pid"
pid=$(ps -ef | grep eureka.jar | grep -Ev 'color=auto' | awk '{print $2}')
echo "即将杀死任务eureka: $pid"
kill -9 $pid
echo "已杀死任务: $pid"

View File

@@ -0,0 +1,8 @@
#!/bin/sh
source /etc/profile
cd $(dirname $0)
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./workflow-service/workflow-service.jar --server.port=8614 > workflow-service.log 2>&1 &