This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
galaxy-tsg-olap-dll-multipo…/internal-flume/flumeController/stop_all.sh
2020-05-12 19:03:13 +08:00

14 lines
278 B
Bash
Executable File

#! /bin/bash
#flume配置文件夹路径,注意最后没有/
#主路径下
#BASE_DIR=$(cd $(dirname $0); cd conf/; pwd)
#flumeController路径下
BASE_DIR=$(cd $(dirname $0); cd ../conf/; pwd)
for conf_name in `ls ${BASE_DIR}`
do
${BASE_DIR}/${conf_name}/stop_flume.sh
done