From ba5973946bb26f37d22624542fb02ca577984790 Mon Sep 17 00:00:00 2001 From: likerj Date: Thu, 11 Apr 2019 11:27:32 +0800 Subject: [PATCH] So far use STORM_UI_HOST isn't suitable for docker, because container ip will be changed. So it should expose address using 0.0.0.0 --- storm/templates/storm.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storm/templates/storm.yaml.j2 b/storm/templates/storm.yaml.j2 index 7d5a9565b..e1f8c4ae1 100644 --- a/storm/templates/storm.yaml.j2 +++ b/storm/templates/storm.yaml.j2 @@ -43,7 +43,7 @@ nimbus.seeds: nimbus.thrift.port: {{ NIMBUS_THRIFT_PORT | default('6627') }} nimbus.childopts: "{{ NIMBUS_CHILDOPTS }}" -ui.host: "{{ STORM_UI_HOST | default ('127.0.0.1') }}" +ui.host: 0.0.0.0 ui.port: {{ STORM_UI_PORT | default('8088') }} ui.childopts: "{{ STORM_UI_CHILDOPTS }}"