Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you find the version of glassfish?

Tags:

glassfish

How do you determine which version of GlassFish server is running?

This command:

/var/glassfish/bin/asadmin version

...returned:

Version = Sun Java System Application Server 9.1_01
Command version executed successfully.

Which version of GlassFish is this?

like image 857
jeffo Avatar asked Feb 19 '14 22:02

jeffo


People also ask

What type of server is GlassFish?

GlassFish Server Open Source Edition is an open source application server built within the GlassFish community.


2 Answers

  1. Go to the GlassFish installed directory using terminal.

    cd /opt/glassfish3.1.2.2/glassfish/bin
    
  2. Type this command in terminal

    ./asadmin version
    
like image 142
Shalika Avatar answered Sep 17 '22 14:09

Shalika


From the GlassFish wiki page, it appears that Sun Java System Application Server 9.1 corresponds to GlassFish v2.

This blog entry also mentions that your specific version (9.1_01) corresponds to GlassFish v2ur1.

like image 34
admdrew Avatar answered Sep 19 '22 14:09

admdrew