How to set username and password in JBoss

24,843

Solution 1

It's in the users.properties file within jboss\server\default\conf\props

Solution 2

Like @Ankur said you need to configure the files in the jboss\server\default\conf\props

I think you want to configure your admin console users. So you have to add one line with your user name and password to the jmx-console-users.properties file (e.g: username=password => jbatista=portuguese).

It's important that you don't forget to add the role to the user created above/privileges. Like tomcat or any other Application server the users have one or more roles and the roles have permissions. In this case we want that the user jbatista has the JBossAdmin role so that he could deploy WARs, etc. Like the add user case, we have to add another entry line. But instead of jmx-console-users.properties we'll add the jbatista=JBossAdmin (username=role) line to the jmx-console-roles.properties file

Share:
24,843
Ankur
Author by

Ankur

A junior BA have some experience in the financial services industry. I do programming for my own personal projects hence the questions might sound trivial.

Updated on March 06, 2020

Comments

  • Ankur
    Ankur about 4 years

    Unfortunately their Wiki is down for maintenance and the web is not being helpful.

    How do I add a new user to JBoss so I can login.

    In Tomcat you change the tomcat-users.xml file. There seems to be a similarly located and titled file called login-config.xml in the config folder of jboss.

    Is it something to do with this file or something else altogether.