2

I clean-installed JBoss 4.2.3.GA and ran it via Eclipse.

I can see verify it's running via a web browser:

enter image description here

While its web console seems to be empty:

enter image description here

So, I tried accessing http://127.0.0.1:8080/admin-console instead, as suggested in this SO answer. But all I am getting is "The requested resource (/admin-console) is not available":

enter image description here

What am I missing or what am I doing wrong?

How do I get either the web console or the admin-console to work?

datv
  • 585
  • 3
  • 15

1 Answers1

1

There is no http://fully-qualified.hostname:8080/admin-console in JBoss 4.2.3GA.

But there is the http://fully-qualified.hostname:8080/web-console Java application.

The reason it is empty is because starting with Java 7 Update 51, Java does not allow users to run applications that are not signed, self-signed or that are missing permission attributes.

To workaround this, add your server's URL to the Exception Site List. Note: you may need to Run as administrator the Configure Java applet.

Once you save the revised exception site list, web-console's JBoss Management Console will be revealed:

enter image description here

datv
  • 585
  • 3
  • 15