Sunday, December 16, 2018

STARTING WEBLOGIC SERVER IN DEVELOPMENT OR PRODUCTION MODE


WebLogic Server domains start up in development mode by
default. To change startup mode for a domain, follow
the below instructions.

Start the server in development mode :

From the command line with the parameter: 
   -Dweblogic.ProductionModeEnabled=false setting.

Example : 
domains/base_domain$ ./startWebLogic.sh -Dweblogic.ProductionModeEnabled=false

Start the server in production mode 

From the command line, use the parameter: 
-Dweblogic.ProductionModeEnabled=true setting.
Example : 
domains/base_domain$ ./startWebLogic.sh -Dweblogic.ProductionModeEnabled=true


No comments:

Post a Comment