What version of JBoss I am running?

前端 未结 11 1633
太阳男子
太阳男子 2021-02-05 11:05

(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

11条回答
  •  我寻月下人不归
    2021-02-05 11:18

    The version of JBoss should also be visible in the boot log file. Standard install would have that (for linux) in

    /var/log/jboss/boot.log

    $ head boot.log

    08:30:07,477 INFO  [Server] Starting JBoss (MX MicroKernel)...
    08:30:07,478 INFO  [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)
    08:30:07,478 DEBUG [Server] Using config: org.jboss.system.server.ServerConfigImpl@4277158a
    08:30:07,478 DEBUG [Server] Server type: class org.jboss.system.server.ServerImpl
    08:30:07,478 DEBUG [Server] Server loaded through: org.jboss.system.server.NoAnnotationURLClassLoader
    08:30:07,478 DEBUG [Server] Boot URLs:
    

    so required info int the above case is

    Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)

提交回复
热议问题