Repository: ambari Updated Branches: refs/heads/trunk 6effe457e -> d8b862388
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/d8b86238 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/d8b86238 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/d8b86238 Branch: refs/heads/trunk Commit: d8b862388a9df0779585eb78964c00c4bf14dc84 Parents: 6effe45 Author: Vitaly Brodetskyi <[email protected]> Authored: Sun Mar 15 23:15:04 2015 +0200 Committer: Vitaly Brodetskyi <[email protected]> Committed: Sun Mar 15 23:19:33 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/d8b86238/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/d8b86238/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>
