如何使用CLI

时间:2016-10-31 16:11:32

标签: jboss jboss6.x jboss-cli

我需要在jboss中创建一些登录模块。

首先我创建了模块

/subsystem=security/security-domain=sn-security-domain/:add(cache-type=default)

下一个命令是添加参数

/subsystem=security/security-domain=sn-security-domain/authentication=classic:add(login-modules=[{"code"=>"UsersRoles", "flag"=>"required", "module-options"=>[("usersProperties"=>"path-to-file"),("rolesProperties"=>"path-to-file"),("unauthenticatedIdentity"=>"nobody")] }] )

path-to-file - 是我文件的路径。 所以问题是:我可以使用CLI将此文件上传到服务器,例如使用 - resources = param或类似的东西吗?

Ex:我可以添加模块

module add --name=com.filter --resources= C:\activation.jar --dependencies=javax.servlet.api,javax.api,org.slf4j.jcl-over-slf4j

它将在服务器上创建模块并上传activation.jar。

我想要登录模块的相同功能。 感谢。

1 个答案:

答案 0 :(得分:0)

我担心你必须在服务器上手动创建文件。