WildFly CLI - Add a Security Domain and a Custom Login Module

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Add the Security Domain

/subsystem=security/security-domain=example:add
/subsystem=security/security-domain=example/authentication=classic:add
reload

Add the Custom Login Module

/subsystem=security/security-domain=example/authentication=classic/login-module=example-login-module:add(code="io.novaordis.example.jaas.LoginModule",flag="required",module=io.novaordis.example,module-options={configurationFile=.../something.cfg})

where "module=io.novaordis.example" is the name of the WildFly module that contains the code for the login module.

For more details on how to add a WildFly module via CLI, see Add a WildFly Module with CLI.