[gview file=”https://gyantruck.files.wordpress.com/2020/09/f8390-weblogic-server-deployment.pptx”]
Continue readingTag: deployment
Automating application deployment on Weblogic Server.
In this article we will demonstrate three ways of deployment and undeployment on Weblogic Server 1. Using WLST 2. Using JMX 3. Using build script. Application Deployment using WLST connect(‘weblogic’,’weblogic’,’t3://localhost:7001′) edit() startEdit() deploy(‘CookieApp’,’D:/Replications/CookieApp’,targets=’AdminServer’) save() activate() exit() Application Undeployment using WLST
Continue readingweblogic.Deployer usage
Below article provides some sample usages of the weblogic.Deployer utility. weblogic.Deployer is a Java-based deployment tool that provides administrators and developers command-line based deployment operations. Deploy application on admin server: java weblogic.Deployer -adminurl url -username username -password password -name myapp
Continue readingStage Mode of Deployment in Weblogic Server
In Stage Mode of Deployment, the application is copied over to the stage directory of the target servers. By default the stage folder is present in the root directory of the server. This mode of deployment is generally used when
Continue reading