Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What version of JBoss I am running?

Tags:

java

tomcat

jboss

(As asked in title:) How do I tell what version of JBoss I am running?

I am also curious what version of tomcat I am running. Does a specific version of JBoss correspond to a certain version of tomcat?

like image 339
sixtyfootersdude Avatar asked Feb 25 '10 15:02

sixtyfootersdude


People also ask

What is latest version of JBoss?

Red Hat's latest JBoss EAP version is 7, with Cumulative Patches 2 and Cumulative Patches 3 (JBoss EAP 7.2 and JBoss EAP 7.3, respectively). Key features: Eclipse-based Integrated Development Environment (IDE) is available using JBoss Developer Studio. Supports Java EE and Web Services standards.

What does JBoss run on?

You can run JBoss application server on Linux, Unix, OS X, and Windows.

What is JBoss called now?

On November 20, 2014, JBoss Application Server was renamed WildFly.


2 Answers

In your JBoss lib Directory:

  • Open the file jboss-system.jar by example
  • Extract the file MANIFEST.MF from the META-INF directory
  • Open MANIFEST.MF with a text editor and then look at the property Specification-Version and Implementation-Version
like image 187
Fred Avatar answered Sep 21 '22 13:09

Fred


This URL (JMX-Console) should provide you the informations

http://localhost:8080/jmx-console/HtmlAdaptor?action=inspectMBean&name=jboss.system%3Atype%3DServer

The tomcat version is implied by the jboss server version.

EDIT:

A complete list of versions you find here VersionOfTomcatInJBossAS

Where you reach your JBoss depends on the interface it is bound, using -b hostname If you start using JBoss with -b 0.0.0.0 option. That way, you can access the system using localhost, machineName and even the IP address. By default it's localhost, if you use th -b option you need to replace localhost by yourhostname.

like image 22
stacker Avatar answered Sep 22 '22 13:09

stacker