Repository: ambari Updated Branches: refs/heads/branch-2.0.0 285bdec0b -> bf5bbb3fd
AMBARI-10093. HiveServer2, Storm UI server and Falcon are not starting after disabling security.(vbrodetskyi) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/bf5bbb3f Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/bf5bbb3f Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/bf5bbb3f Branch: refs/heads/branch-2.0.0 Commit: bf5bbb3fdba2516f949bc59dc5367a242bf59e6f Parents: 285bdec Author: Vitaly Brodetskyi <[email protected]> Authored: Sun Mar 15 23:20:42 2015 +0200 Committer: Vitaly Brodetskyi <[email protected]> Committed: Sun Mar 15 23:20:42 2015 +0200 ---------------------------------------------------------------------- .../STORM/0.9.1.2.1/configuration/storm-site.xml | 5 +++++ .../stacks/HDP/2.2/services/STORM/configuration/storm-site.xml | 6 ++++++ 2 files changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/bf5bbb3f/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/configuration/storm-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/configuration/storm-site.xml b/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/configuration/storm-site.xml index b6a2cf2..bfe1d26 100644 --- a/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/configuration/storm-site.xml +++ b/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/configuration/storm-site.xml @@ -192,6 +192,11 @@ <description>Childopts for Storm UI Java process.</description> </property> <property> + <name>ui.filter</name> + <value>null</value> + <description>Class for Storm UI authentication</description> + </property> + <property> <name>logviewer.port</name> <value>8000</value> <description>HTTP UI port for log viewer.</description> http://git-wip-us.apache.org/repos/asf/ambari/blob/bf5bbb3f/ambari-server/src/main/resources/stacks/HDP/2.2/services/STORM/configuration/storm-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/STORM/configuration/storm-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.2/services/STORM/configuration/storm-site.xml index 376a83d..befb5f8 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/STORM/configuration/storm-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/STORM/configuration/storm-site.xml @@ -68,6 +68,12 @@ </property> <property> + <name>ui.filter</name> + <value>null</value> + <description>Class for Storm UI authentication</description> + </property> + + <property> <name>supervisor.childopts</name> <value>-Xmx256m _JAAS_PLACEHOLDER -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.port=56431 -javaagent:/usr/hdp/current/storm-supervisor/contrib/storm-jmxetric/lib/jmxetric-1.0.4.jar=host=localhost,port=8650,wireformat31x=true,mode=multicast,config=/usr/hdp/current/storm-supervisor/contrib/storm-jmxetric/conf/jmxetric-conf.xml,process=Supervisor_JVM</value> <description>This parameter is used by the storm-deploy project to configure the jvm options for the supervisor daemon.</description>
