Doris启停脚本

这是一个用于启动和停止Doris集群的自动化脚本,包括FE、BE和BROKER节点。脚本通过SSH连接到hadoop102、hadoop103和hadoop104节点,执行相应的启动或停止命令。根据传入的参数(start或stop),脚本将执行对应的操作。
摘要由CSDN通过智能技术生成

#!/bin/bash


SERVERS="hadoop102 hadoop103 hadoop104"
MASTER="hadoop102"

if [ $# -lt 1 ]
then
    echo "No Args Input..."
    exit ;
fi

case $1 in
"start")
       echo "------正在启动Doris集群------"


start_fe() {
    for SERVER in $SERVERS
    do
         if [ "$SERVER" = "$MASTER" ]; then  
            ssh $SERVER "/opt/module/doris/fe/bin/start_fe.sh --daemon;jps -m"
         else            ssh $SERVER "/opt/module/doris/fe/bin/start_fe.sh --helper $MASTER:9010 --daemon;jps -m"
         fi
    done
}
start_be() {
    for SERVER in $SERVERS
    do
         ssh $SERVER "/opt/module/doris/be/bin/start_be.sh --daemon;ps -aux |grep _be"
    done
}
start_broker() {
    for SERVER in $SERVERS
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值