Skip to content

Commit

Permalink
write zk shell
Browse files Browse the repository at this point in the history
  • Loading branch information
wxgzgl committed Sep 9, 2020
1 parent 26780dc commit 080b873
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@ Lark 是一站式开源的数据中台,实现元数据管理,数据仓库开

# **开发计划**

9-10月份,我们把这些大数据组件,包装成可配置的一些工具,一键打包,一键配置,部署简单,傻瓜式操作。

11-12月份,我们可以将这些页面和后端配置,弄成web页面,然后我们具体划分,什么是数据血缘,什么是元数据…这样后续我们,比如配置flink任务,只需要选择一下,生成任务,然后配置一下任务调度。
2020-09-09 输出



# 学习资源库

文章学习[Flinkx学习]( https://github.com/wxgzgl/flinkx-web/blob/master/docs/list.md )
文章学习 [Flinkx学习]( https://github.com/wxgzgl/flinkx-web/blob/master/docs/list.md )

数据中台 [数据中台文章](https://github.com/wxgzgl/flinkx-web/tree/master/docs/midtable/midtable.md)

Expand Down
38 changes: 38 additions & 0 deletions docs/zookeeper/shell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 1.启动脚本:

```
#!/bin/bash
for host in mini4 mini5 mini6
do
ssh $host "source /etc/profile;/home/hadoop/data/zookeeper-3.4.5/bin/zkServer.sh start"
echo "$host zk is running"
done
```

# 2.停止脚本:

```
#!/bin/bash
for host in mini4 mini5 mini6
do
ssh $host "source /etc/profile;/home/hadoop/data/zookeeper-3.4.5/bin/zkServer.sh stop"
echo "$host zk is stopping"
done
```

# 3.查看状态脚本:

```
#!/bin/bash
for host in mini4 mini5 mini6
do
ssh $host "source /etc/profile;/home/hadoop/data/zookeeper-3.4.5/bin/zkServer.sh status"
echo "$host zk is stopping"
done
```



可以添加首页QQ群获取脚本。
Binary file modified flinkx-admin/target/datax-admin-2.1.2.jar
Binary file not shown.

0 comments on commit 080b873

Please sign in to comment.