How to configure SSL for Jboss Management Console.
How to Secure Jboss EAP 6.2 Management console?
Note: Click Here to refer my previous blog on how to configure ssl in jboss standalone mode
I am going to use the same Selfsigned keystore file to configure SSL for Jboss Management Console.
Step1: Edit: $JBOSS_HOME/standalone/standalone.xml and make the below configuration changes, save the changes.
<management>
<security-realms>
<security-realm name="ManagementRealm">
<security-realms>
<security-realm name="ManagementRealm">
<server-identities>
<ssl>
<keystore path="ncm.keystore" relative-to="jboss.server.config.dir" password="123456"/>
</ssl>
</server-identities>
</security-realm>
</security-realms>
<ssl>
<keystore path="ncm.keystore" relative-to="jboss.server.config.dir" password="123456"/>
</ssl>
</server-identities>
</security-realm>
</security-realms>
<management-interfaces>
<http-interface security-realm="ManagementRealm">
<socket-binding https="management-https"/>
</http-interface>
</management-interfaces>
</management>
Step2: Restart the Jboss Server and test https://localhost:9443/console
Comments
Post a Comment