WildFly CLI - Add a Security Domain and a Custom Login Module: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:
where "module=io.novaordis.example" is the name of the WildFly module that contains the code for the login module.
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 [[WildFly CLI - Add a Module]]
For more details on how to add a WildFly module via CLI, see [[WildFly CLI - Add a Module|Add a WildFly Module with CLI]].

Revision as of 20:33, 8 March 2017

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.