Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the JBoss 5.x EAP default web console password?

share|improve this question

4 Answers

up vote 24 down vote accepted

The default credential is:

login: admin
password: admin

But if you use EAP these credential are turn off by default and there is no active user (security reasons :)). If you want to turn on these user you have to edit file in your current profile: ./deploy/management/console-mgr.sar/web-console.war/WEB-INF/classes/web-console-users.properties. It should be enough to remove # sign form the line with the user.

If you want to create new user don't forget to set up correct groups in web-console-roles.properties file.

You can easly find information where these information are store. Just open the ./conf/login-config.xml file and find the proper security domain definition. In case of Web Console application it will be web-console policy.

share|improve this answer
Thanks. perfect solution well discribed. Works great. – Viren Pushpanayagam Mar 24 '11 at 11:57

I can also verify the above solution except I had to change in

**..\server\<server profile>\conf\props\jmx-console-users.properties**
share|improve this answer

I just had to uncomment the line in jboss-eap-5.0\jboss-as\server\default\conf\props\jmx-console-users.properties

admin=admin

Thats it. Restart Jboss and I was about to get in to JBOSS JMX. Magically this even fixed the error that I used to get while shutting down Jboss from Eclipse.

share|improve this answer
Here is the example .. have a look ...
Step 1.
 jmx-console-users.properties 
 admin=admin

Step 2.
 jmx-console-roles.properties 
 admin=JBossAdmin,HttpInvoker

Step 3.
 Restart / start the jobss instance.

Now you should good to go ...

Go to the jmx console ....
enter jboss login url
Then enter **admin** as username and **admin** password. 

Thanks,
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.