系统之家官网 网站地图| TAG标签| RSS订阅| 加入收藏

系统排行榜

Linux中怎么样屏蔽storm ui的kill功能

Linux中怎么样屏蔽storm ui的kill功能
更新时间:2024-09-09 09:34 系统大小: 系统类型:其他教程
授权方式: 系统语言: 系统位数:
系统品牌: 系统版本:

安全检测:

推荐星级:

详细介绍

Linux系统中storm的ui有kill TOPology功能假如没屏蔽的话,就会致使storm的TOPology比较容易让人kill掉,假如你的TOPology出现让人kill的状况,多半是ui地址让人了解了,为了系统的安全,有必要将storm ui的kill功能进行屏蔽,一块儿认识下吧。

有两种办法:

1.前端增加nginx,做location

剖析ui页面,对应kill的button,html中的action为:

代码如下:

《input enabled= onclick=confirmAction(xxxxxxxxxx, xxxxxxxx, kill, true, 30) type=button value=Kill》

调用了js的confirmAction办法,这个办法存在于storm-core/src/ui/public/js/script.js 中,办法的概念如下:

代码如下:

function confirmAction(id, name, action, wait, defaultWait) {var opts = {type:POST,url:/TOPology/ + id + / + action};

if (wait) {

var waitSecs = prompt(Do you really want to + action + TOPology + name + ? +If yes, please, specify wait time in seconds:,defaultWait);if (waitSecs != null waitSecs != ensureInt(waitSecs)) {opts.url += / + waitSecs;} else {return false;}

} else if (!confirm(Do you really want to + action + TOPology + name + ?)) {return false;}

$(input[type=button]).attr(disabled, disabled);$.ajax(opts).always(function () {window.location.reload();}).fail(function () {alert(Error while communicating with Nimbus.)});return false;}

以看到办法主要分为两步,生成post请求的url,格式为/TOPology/ + id + / + action + / + waitSecs,这里action为kill,waitSecs为触发kill时手工填入的时间,譬如这里的30s,最后的url格式如下:

代码如下:

/TOPology/xxxxx/kill/xxxx

第二步就是依据这个设置触发一个ajax请求,这里大家仅需关心第一步即可,设置nginx如下:

代码如下:

upstream storm {

server 127.0.0.1:8888 weight=3 max_fails=3 fail_timeout=5s;}

server {

server_name storm.xxx.com;

listen 80;

proxy_set_header Host $host;

proxy_read_timeout 3600;

proxy_set_header X-Forwarded-For $remote_addr;access_log /var/log/nginx/storm.access.log main;error_log /var/log/nginx/storm.error.log debug;location ~* /TOPology/(.*)/kill/(.*) {return 403;}

location / {

proxy_pass https://storm;

}

}

如此,就能屏蔽掉前端的kill功能了。

注意一个细节,storm ui的默认端口时8080,这个端口和nm冲突(见bug https://github.com/yahoo/storm-yarn/issues/25),设置storm.yaml ui.port: 8888,并重启ui即可。

2.更改代码,去掉action有关的button

代码如下:

storm-core/src/ui/public/TOPology.html

去除掉下面的部分:

代码如下:

《div id=TOPology-actions》

《h3 class=js-only》Topology actions《/h3》

《p id=TOPology-actions class=js-only》

《/p》

《/div》

第二种办法需要重新编译,还没做测试。。

以上就是linux系统中屏蔽storm ui的kill功能的办法介绍了,本文一共介绍了两种办法,由于第二种办法还没有测试,所以你可以用第一种办法进行屏蔽。

下载地址