Network Deployment (Distributed operating systems), v8.0 > Scripting the application serving environment (wsadmin) > Manage servers and nodes with scripting


Obtaining server version information with scripting

Use wsadmin.sh and scripting to obtain server version information.

Perform the following steps to query the server version information:


Procedure

  1. Identify the server and assign it to the server variable.

      ### Jacl

      set server [$AdminControl completeObjectName type=Server,name=server1,node=mynode,*]
      

      ### Jython

      server = AdminControl.completeObjectName('type=Server,name=server1,node=mynode,*')
      print server 

    Example output:

    WebSphere:cell=mycell,name=server1,mbeanIdentifier=server.xml#Server_1, type=Server,node=mynode,process=server1,processType=ManagedProcess
    

  2. Query the server version. The server version information is stored in the serverVersion attribute. The getAttribute command returns the attribute value of a single attribute, passing in the attribute name.

    To run the following commands as a non-root user, have write permission for the WAS_HOME/properties/version/ and WAS_HOME/properties/version/history directories.

      ### Jacl

      $AdminControl getAttribute $server serverVersion
      

      ### Jython

      print AdminControl.getAttribute(server, 'serverVersion')
      

    Example output for a WAS ND installation follows:

    IBM WAS vReport
       ---------------------------------------------------------------------------
    
            Platform Information
            ------------------------------------------------------------------------
    
                    Name: IBM WAS                 Version: 5.0
    
    
            Product Information
            ------------------------------------------------------------------------
    
                    ID: BASE
                    Name: IBM WAS                 Build Date: 9/11/02
                    Build Level: r0236.11
                    Version: 5.0.0
    
    
            Product Information
            ------------------------------------------------------------------------
    
                    ID: ND
                    Name: IBM WAS ND
                    Build Date: 9/11/02
                    Build Level: r0236.11
                    Version: 5.0.0
    
       ---------------------------------------------------------------------------
       End Report
       ---------------------------------------------------------------------------
    
    
    


Use the wsadmin scripting AdminControl object for scripted administration
Use wsadmin scripting
Get started with wsadmin scripting
Start the wsadmin scripting client using wsadmin.sh


Related


Commands for the AdminControl object using wsadmin.sh

+

Search Tips   |   Advanced Search