-
Task
-
Resolution: Unresolved
-
Major
-
None
-
23.0.2.Final
-
None
-
undefined
The Windows service is not stopping after configuration in standalone.xml
<security-realm name="ManagementRealm">
<server-identities>
<ssl>
<keystore path="application.keystore" relative-to="jboss.server.config.dir" keystore-password="password" alias="server" key-password="password" generate-self-signed-certificate-host="localhost"/>
</ssl>
</server-identities>
Also added https socket in below tags:
<management-interfaces>
<http-interface security-realm="ManagementRealm">
<http-upgrade enabled="true"/>
<socket-binding http="management-http"/>
</http-interface>
</management-interfaces>
Socket binding group:
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
<socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
Every time I need to restart the Windows server in order to stop the Wildfly service.
But able to access Admin console with SSL enabled with the above mentioned configuration.
If I removed these configuration and Wildfly service is working fine but no Admin console with SSL enabled.
Please correct me if I am wrong.