一、前言
记录下在CDP 环境中,通过Knox 访问Yarn Web UI,无法跳转到Flink Web UI 的BUG 解决方法。
二、问题复现
- 登录 Knox Web UI
-
找到任一 Flink 任务
-
点击
ApplicationMaster
-
跳转 Flink WEB UI 出问题
内容空白,无法正常跳转到Flink WEB UI。
三、问题原因
在yarnui
中,tracking UI
调转flink会话被破坏,导致tracking UI
的URL没有以斜杠结尾,这使得flink <base>
基础页面错误。
四、解决方法
- 确认
knox
Knox Gateway Data Directory 的存放路径
- 登录到 knox 安装节点,并跳转到该路径
bash
# knox data dir
cd /mnt/sdb1/knox/gateway/data
cd services/yarnui/2.7.0
里面的文件如下:
- 编辑
rewrite.xml
文件
修改第146行,251行,288行。
具体如下:
bash
vim rewrite.xml
# 修改第146行
# 原来
<rewrite template="{$frontend[url]}/yarn/proxy/{**}"/>
# 修改后
<rewrite template="{$frontend[url]}/yarn/proxy/{**}/"/>
# 修改第251行
# 原来
<rewrite template="{$frontend[url]}/yarn/proxy/{**}"/>
# 修改后
<rewrite template="{$frontend[url]}/yarn/proxy/{**}/"/>
# 修改第288行
# 原来
<rewrite template="{$frontend[url]}/yarn/proxy/{**}"/>
# 修改后
<rewrite template="{$frontend[url]}/yarn/proxy/{**}/"/>
# 保存
:wq
-
重启Knox 服务。
CM -> 集群 -> Knox -> 操作 -> 重启。
-
重新访问Yarn WEB UI
可以正常访问,问题解决!