I should have seen this earlier: anonymous wrote : default/conf/props/jmx-console-users.properties | | # A sample users.properties file for use with the UsersRolesLoginModule | | master=Sachin | | | | default/conf/props/jmx-console-roles.properties | | # A sample roles.properties file for use with the UsersRolesLoginModule | | admin=JBossAdmin,HttpInvoker | | |
The users.properties contains username and password. The roles.properties contains username and roles. So in your case, you have a user named master (in users.properties) but haven't assigned any roles to this user in the roles.properties. So in your roles.properties, you can add: master=JBossAdmin,HttpInvoker Restart the server for the changes to take effect. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4184631#4184631 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4184631 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
