I'm following the tutorial from: https://github.com/jbosstm/quickstart/tree/master/XTS/ssl
Using jboss-cli successfully added the security-realm:
/core-service=management/security-realm=SSLRealm:add()
/core-service=management/security-realm=SSLRealm/server-identity=ssl:add( \
keystore-path=./standalone/configuration/server.keystore, \
keystore-password=client, \
alias=client)
When I try to add an https-listener
:
/subsystem=undertow/server=default-server/https-listener=https:add( \
socket-binding="https", security-realm="SSLRealm" \
)
WildFly throws an exception:
{
"outcome" => "failed",
"failure-description" => "JBAS014750: Operation handler failed to complete",
"rolled-back" => true
}
Any ideas how to add the https-listener
?