From f3ec19efe63b687732fe09c1b73e19d6c9a09eaa Mon Sep 17 00:00:00 2001 From: huayu <674367665@qq.com> Date: Fri, 27 Aug 2021 22:31:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=90=AF=E5=8A=A8=EF=BC=9A?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0hadoop=E3=80=81yarn=E3=80=81hive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- linux/项目启动.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/linux/项目启动.md b/linux/项目启动.md index c524179..b9efcbf 100644 --- a/linux/项目启动.md +++ b/linux/项目启动.md @@ -24,3 +24,29 @@ zkServer.sh status flume-ng agent -n a -f ./to_kafka.conf -Dflume.root.logger=INFO,console ``` +## hadoop启动 + +```shell +## 启动全部node节点 +start-all.sh +## 关闭安全模式 +hdfs dfsadmin -safemode leave +``` + +## yarn启动 + +```shell +yarn-daemon.sh start resourcemanager +``` + +## hive启动 + +```shell +## 启动元数据 +hive --service metastore & +## 启动客户端 +hive +``` + + +