Version 1

    To configure JBOSS AS 7.1 to use SSL enabled web administrative console open standalone.xml and change following content.

     

    <management>
    <security-realms>
    <security-realm name="ManagementRealm">
    <server-identities>
    <ssl>
    <keystore path="keystore.jks" relative-to="jboss.server.config.dir" password="changeit"/>
    </ssl>
    </server-identities>
    </security-realm>
    </security-realms>
    <management-interfaces>
    <http-interface security-realm="ManagementRealm">
    <socket-binding https="management-https"/>
    </http-interface>
    </management-interfaces>

    </management>

     

    Then you need to use keytool from JDK to generate keypair in Java JKS format. I used following command:

     

    keytool -genkey -alias tomcat -keyalg RSA -keystore keystore.jks -storepass changeit