summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2019-07-30 14:38:08 +0800
committerdoufenghu <[email protected]>2019-07-30 14:38:08 +0800
commit78b3883927e6218f22a85aaab5e6cebd95f4503d (patch)
tree0eeef5d2597c3bae4ffff277c216cdb523f9724a
parentbf17c88796347f42ca7c12f1a790e6e826223040 (diff)
merge gohangout app
-rw-r--r--TSG/home.md36
1 files changed, 35 insertions, 1 deletions
diff --git a/TSG/home.md b/TSG/home.md
index ad82069..132e18d 100644
--- a/TSG/home.md
+++ b/TSG/home.md
@@ -31,7 +31,7 @@
| SQL 查询网关 | galaxy-qgw- service | 1.clickhouse 原始日志检索<br> 2.Druid 时序库,预定义统计<br> 3.Hbase 离线报告结果 | 统一SQL查询代理网关平台 |
| 报表统计服务 | galaxy-reprot-service | 1.mariadb 执行任务列表 <br> 2.Hbase 统计结果<br> 3.clickhouse OLAP 统计 | 离线报告统计应用 |
| Storm应用 | jar | 数据加载、实时统计 | 拓扑程序,部署到storm集群中 |
-| gohangout | hangout | | 数据预处理,数据加载到CK的应用 |
+| gohangout | gohangout | 数据源-kafka;数据输出-ck | 数据预处理,数据加载到CK的应用 |
## 1.3 初始化脚本
@@ -132,9 +132,43 @@
### Gohangout 安装
+1. 将安装包与gho_install.sh安装脚本上传至同一目录下
+2. 执行gho_install.sh脚本
+ ```
+ ./gho_install.sh
+ ```
+
+3. 安装完成后刷新环境变量
+
+ ```
+ #刷新环境变量
+ source /etc/profile
+ #查看go版本
+ go version
+ ```
+
+ - 启动停止
+ - 启动
+ ```
+ #在/home/ceiec/go_gohangout/gohangout/bin路径下
+ nohup ./start_gohangout_....sh > /dev/null 2>&1 &
+ #也可以将启动指令统一放入app_start_batch.sh文件内统一启动
+ ```
+
+ - 停止
+
+ ```
+ #在/home/ceiec/go_gohangout/gohangout/bin路径下
+ #停止全部
+ ./stop_all.sh
+ #停止单个
+ ./stop_one.sh yml文件名
+ #重启单个
+ ./restart_one.sh yml文件名
+ ```
### 实时统计topology
1. 配置文件脚本程序统一在/home/ceiec/topology 目录下的子文件夹内(文件夹名称对应的任务大类)