⑴Linux系统中storm的ui有kill topology功能如果没有屏蔽的话,就会导致storm的topology很容易被人kill掉,如果你的topology出现被人kill的情况,多半是ui地址被人知道了,为了系统的安全,有必要将storm ui的kill功能进行屏蔽,一起来了解下吧。
⑵.前端增加nginx,做location
⑶分析ui页面,对应kill的button,html中的action为:
⑷《input enabled=“” onclick=“confirmAction(‘xxxxxxxxxx’, ‘xxxxxxxx’, ‘kill’, true, ” 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 municating with Nimbus.”};return false;}
⑾以看到方法主要分为两步,生成post请求的url,格式为‘/topology/’ + id + ‘/’ + action + ‘/’ + waitSecs,这里action为kill,waitSecs为触发kill时手动填入的时间,比如这里的s,最终的url格式如下:
⑿/topology/xxxxx/kill/xxxx
⒀第二步就是根据这个设置触发一个ajax请求,这里我们只需要关心第一步即可,设置nginx如下:
⒁upstream storm {
⒂server ...: weight= max_fails= fail_timeout=s;}
⒃server {
⒄server_name storm.xxx.;
⒅listen ;
⒆proxy_set_header Host $host;
⒇proxy_read_timeout ;
⒈proxy_set_header X-Forwarded-For $remote_addr;aess_log /var/log/nginx/storm.aess.log main;error_log /var/log/nginx/storm.error.log debug;location ~* /topology/(.*/kill/(.* {return ;}
⒉location / {
⒊proxy_pass
⒋这样,就可以屏蔽掉前端的kill功能了。
⒌注意一个细节,storm ui的默认端口时,这个端口和nm冲突(见bug 设置storm.yaml ui.port: ,并重启ui即可。
⒍.更改代码,去掉action相关的button
⒎storm-core/src/ui/public/topology.html
⒏去除掉下面的部分:
⒐《div id=“topology-actions”》
⒑《h class=“js-only”》Topology actions《/h》
⒒《p id=“topology-actions” class=“js-only”》
⒓第二种方法需要重新编译,还没有做测试。。
⒔以上就是linux系统中屏蔽storm ui的kill功能的方法介绍了,本文一共介绍了两种方法,因为第二种方法还没测试,所以你可以使用第一种方法进行屏蔽。