Home » Oracle » Weblogic » How to find weblogic version in Unix & Windows

How to find weblogic version in Unix & Windows

There are various ways to find the weblogic version. Here I will be giving the steps for all versions of Weblogic in Unix & windows with command line

ADMIN CONSOLE

The lower left-hand corner of the WebLogic admin console will print out the version

how to find weblogic version in linux

This will work for all weblogic versions

WebLogic admin server standard out log file

You can check the WebLogic admin server standard out log file and you will find the weblogic version there also

<Oct 27, 2020 6:01:26 PM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >

Using java weblogic.version

Another simple way to determine the WebLogic Server Version. Here we need to source the WebLogic environment and then run the java command to find it

For Unix

$ . $WL_HOME/server/bin/setWLSEnv.sh
$ java weblogic.version |grep "WebLogic Server"

For windows

$WL_HOME/server/bin/setWLSEnv.cmd
java weblogic.version

Examples

. $WL_HOME/server/bin/setWLSEnv.sh
java weblogic.version |grep "WebLogic Server"
WebLogic Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050

$ . $WL_HOME/server/bin/setWLSEnv.sh
$ java weblogic.version | grep "WebLogic Server"
WebLogic Server 12.1.1.0 Wed Dec 7 08:40:57 PST 2011 1445491

$ . $WL_HOME/server/bin/setWLSEnv.sh
$ java weblogic.version | grep "WebLogic Server"
WebLogic Server 12.1.2.0.0 Fri Jun 7 15:16:15 PDT 2013 1530982 WLS_12.1.2.0.0_GENERIC_130607.1100

$ . $WL_HOME/server/bin/setWLSEnv.sh
$ java weblogic.version | grep "WebLogic Server"
WebLogic Server 12.1.3.0.0 Wed May 21 18:53:34 PDT 2014 1604337

$ . $WL_HOME/server/bin/setWLSEnv.sh
$ java weblogic.version | grep "WebLogic Server"
WebLogic Server 12.2.1.0.0 Tue Oct 6 10:05:47 PDT 2015 1721936

Using registry.xml

for 11g

cd $MW_HOME
grep -i version registry.xml
<component name="WebLogic Server" version="10.3.6.0" InstallDir="/u05/appl_prod/fs1/FMW_Home/wlserver_10.3">

For Rest

$ cat ./12.1.1.0/registry.xml | grep "WebLogic Server"
<component name="WebLogic Server" version="12.1.1.0" InstallDir="MW_HOME/wlserver_12.1">

$ cat ./12.1.2.0/inventory/registry.xml | grep "WebLogic Server"
<distribution status="installed" name="WebLogic Server" version="12.1.2.0.0">

$ cat ./12.1.3.0/inventory/registry.xml | grep "WebLogic Server"
<distribution status="installed" name="WebLogic Server" version="12.1.3.0.0>

$ cat ./12.2.1.0/inventory/registry.xml | grep "WebLogic Server"
<distribution status="installed" name="WebLogic Server" version="12.2.1.0.0"

Using BSU

This is for 11g and 12.1.1

$ cd MW_HOME/utils/bsu
$ ./bsu.sh -prod_dir=MW_HOME/wlserver_12.1 -view -status=applied | grep ProductVersion
ProductVersion: 12.1 MP1
$./bsu.sh -prod_dir=MW_HOME\wlserver_10.3 -status=applied -verbose -view| grep ProductVersion
ProductVersion: 10.3 MP6

Using viewInventory.sh

This is for 12.1.2+

$ MW_HOME/oui/bin/viewInventory.sh | grep "Distribution:"
Distribution: WebLogic Server 12.1.2.0.0
$ MW_HOME/oui/bin/viewInventory.sh | grep "Distribution:"
Distribution: WebLogic Server 12.1.3.0.0
$ MW_HOME/oui/bin/viewInventory.sh | grep "Distribution:"
Distribution: WebLogic Server 12.2.1.0.0

Here is the current Weblogic Version available now and use in Market

Weblogic 10.3.6 ( 11g)
Oracle WebLogic Server 12.1.3
Oracle WebLogic Server 12.2.1.3
Oracle WebLogic Server 12.2.1.4
Oracle WebLogic Server 14.1.1.0
Oracle WebLogic Server 14c (14.1.1.0)

You can download these from the below link
Download Weblogic

See also  adopmon and adopreports utility in R12.2

I hope you like this post on How to find weblogic version

Related Articles

Weblogic Administration Console
How to start/stop Node manager and Managed server in Weblogic: How to start/stop Node manager and Managed server in Weblogic, How to avoid entering the weblogic username and password and start it in the background
How to create the weblogic Domain: Check out this post for step by step guide for weblogic domain creation, how to avoid giving passwords while starting the weblogic administration server
How to perform weblogic Installation: In this article learn how to perform weblogic installation. This is a Step by step instruction guide for this task along with screenshots.
how to apply weblogic patch in linux : check out oracle weblogic patching, how to apply weblogic patch in linux , how to apply weblogic patch in windows, How to apply using BSU & Opatch
how to check oracle version: check out how to find the version of oracle database. what is the latest Oracle Version, what is innovation and long-term release
Changing the Oracle WebLogic Server Administration User Password in R12.2

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top