jboss 4: enable UsersRolesLoginModule, where must users.properties files be placed?
- by golemwashere
I have an application (CQ5) that requires enabling unauthenticatedIdentity on jbossdir/conf/login-config.xml
I used:
<authentication>
<login-module code = "org.jboss.security.auth.spi.UsersRolesLoginModule"
flag = "required" >
<module-option name="unauthenticatedIdentity">nobody</module-option>
</login-module>
</authentication>
then I tried to copy jbossdir/conf/props/jmx-console-users.properties,jmx-console-roles.properties
into users.properties and roles.properies (same dir).
I still get this error:
ERROR
[org.jboss.security.auth.spi.UsersRolesLoginModule]
Failed to load users/passwords/role
files java.io.IOException: No
properties file: users.properties or
defaults: defaultUsers.properties
found
where should I put those files?