

We have to specify various parameter to this command to deploy the deployable.ĭeployment Command java -cp weblogic.jar weblogic.Deployer -verbose -noexit -adminurl -username $ -undeploy -timeout 300 Here we are running weblogic.Deployer class which is inside the weblogic.jar, -cp stand for classpath, in your case if weblogic.jar file is in classpath then no need of specifying weblogic.jar, To Run Weblogic.Deployer, we have to do java -cp weblogic.jar weblogic.Deployer

Weblogic.jar can be found at /wlserver/server/lib/weblogic.jar So I am sharing my learning with you guys.Īs Weblogic.Deployer is a java program and its implementation is provided by Weblogic itself, To run Weblogic.Deployer atleast we require 2 thing To that I had to go through Weblogic.Deployer. Recently At work, I wrote a shell script to deploy ear/war to Weblogic server.

Weblogic.Deployer is a java program provided by Weblogic to deploy the War/Ear and other deployable format on Weblogic Server. Deploying/UnDeploying EAR/WAR to Weblogic Server using Weblogic.Deployer
