《大数据:(电商数仓项目) 集群各服务启动脚本》_数仓4.0服务一键启动-CSDN博客

网站介绍:一、集群各服务启动脚本1. Hadoop 启动停止脚本 (yx_hadoop.sh)#!/bin/bash#hadoop集群的一键启动脚本if(($#!=1))then echo '请输入start|stop参数!' exit;fi#只允许传入start和stop参数if [ $1 = start ] || [ $1 = stop ]then $1-dfs.sh $1-yarn.sh ssh hadoo_数仓4.0服务一键启动