91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux系統中怎么屏蔽storm ui的kill功能

發布時間:2021-07-29 20:39:14 來源:億速云 閱讀:139 作者:chen 欄目:系統運維

本篇內容主要講解“linux系統中怎么屏蔽storm ui的kill功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“linux系統中怎么屏蔽storm ui的kill功能”吧!

  今天有個storm的topology被人kill掉了,但是找不到是誰做的,storm的ui有kill topology的功能,但是沒有權限驗證,這樣就導致知道ui地址的任何人都可以kill掉topology,比較危險,考慮把這個action disable掉。

  有兩種方法:

  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 http://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功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

信阳市| 慈溪市| 子洲县| 克山县| 湄潭县| 海淀区| 常州市| 西丰县| 海林市| 钟祥市| 鄱阳县| 东莞市| 凌源市| 和静县| 麻江县| 永和县| 仁化县| 特克斯县| 永昌县| 巩留县| 怀化市| 陈巴尔虎旗| 姚安县| 航空| 高安市| 浦县| 筠连县| 措美县| 花莲市| 利辛县| 郧西县| 桦南县| 郎溪县| 霍城县| 贵德县| 阿拉善右旗| 钟祥市| 鄢陵县| 永昌县| 榕江县| 淅川县|