21.7.2. Web Console
To disable authentication for the Web console, comment out the <security-constraint> section in the
$JBOSS_HOME/server/PROFILE/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml
file as shown in Example 21.9, “Web Console security-constraint Commented out”.
Example 21.9. Web Console security-constraint Commented out
<!--
<security-constraint> <web-resource-collection> <web-resource-name>HtmlAdaptor</web-resource-name> <description> An example security config that only allows users with the role JBossAdmin to access the HTML JMX console web application </description> <url-pattern>/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>JBossAdmin</role-name> </auth-constraint> </security-constraint>-->