StackLeader Blog

Post Image
Apr 10, 2017

Disabling the admin web console on EAP 7


DISABLING EAP 7 ADMINISTRATION WEB CONSOLE

Update the http Management Interface

Add console-enabled=”false” to in standalone.xml

<management>
    ...
    <management-interfaces>
        <http-interface security-realm="ManagementRealm" console-enabled="false">
            <socket-binding http="management-http"/>
        </http-interface>
    </management-interfaces>
</management>

CLI command

/core-service=management/management-interface=http-interface:write-attribute(name=console-enabled,value=false)