Some Background
Weblogic distribution is the terminology that depicts the form or the nature of the Oracle Weblogic Installer (or) the installable files.
Oracle weblogic 12c can be downloaded in two forms.
- Generic Distribution
- Developer Distribution
What is Generic Distribution
In Generic Distribution, Oracle has bundled the Weblogic server and Coherence cluster with application examples and console extensions and help files.
Generic Distribution also has some of the Weblogic server's signature features like Continuous availability bundled in. Which will not be available in the Developer Distribution.
The Downloaded ZIP file contains a JAR file named "fmw_12.2.1.3.0_wls.jar" The installation instructions for Generic Distribution can be found in here
You can download the Generic Installer directly from here
What is Developer Distribution
In Oracle's parlance, Developer Distribution is called a Quick Distro or Quick installation. As the name suggests this is the quick installer with decreased file size.
Developer Distribution file would come around 230 to 250mb where Generic Installer would come near 800mb.
It is for the developers who want to try WebLogic 12c so there would be some of the Weblogic's administrative and signature features like High availability (Continuous availability), examples and admin console help files available in Generic version would be missing.
You can download the Developer Installer directly from here
Hope it helps
Thanks,
SaravAK
Follow me on Linkedin My Profile
Follow DevopsJunction onFacebook orTwitter
For more practical videos and tutorials. Subscribe to our channel
Signup for Exclusive "Subscriber-only" Content
More from Middleware Inventory
-
Weblogic Config XML readerHave you ever wanted to get the server configuration information of WebLogic directly from config.xml without using WLST. I recently had the same requirement and spent a little time ( I think ) to create this simple XML parser in python which helped me in reading the config.xml file's content…
-
Recover weblogic password in 4 steps - Weblogic 12cThe Objective In this post, we will see the easiest way possible to decrypt the WebLogic admin server password. in other words, recovering WebLogic password. You do not need to create a JAR file or copy any security-related files etc. You do not even need your AdminServer to be running. Just…
Weblogic Application Deployment ParserLet me introduce Weblogic Application Deployment Parser , A tool designed to list all the application (app-deployment) configuration from the config.xml file of weblogic. It uses the same core of Weblogic Config XML Reader you can find it here Though there are weblogic.Admin and WLST ways to get the deployed…
Weblogic 12c Nodemanger Native Version ExceptionException: weblogic.nodemanager.common.configexception: native version is enabled but nodemanager native library could not be loaded Solution: For Weblogic10 & 11g Go to your $WL_HOME/common/nodemanager/ Edit the nodemanger.properties file ( If not available create it) Change the value of NativeVersionEnabled=true to NativeVersionEnabled=false Restart the Nodemanager For Weblogic 12c Go to your Domain/nodemanager directory (i.e: /apps/oracle-weblogic/domains/mwidomain/nodemanager/) Edit…
How to List the applied Patches in WeblogicTo List the applied patches in weblogic, you can do the following. For Versions Prior 10.3 Go to your MW_HOME/utils/bsu directory Run the following command ./bsu.sh -report Note* If you get any error like "unable to access patch-client.jar" - Execute the setWLSEnv.sh from WL_HOME/server/bin script and retry For weblogic 12c…