markdown-it
demo
Delete
Submit
clear
permalink
### [How to deploy war/ear file from command line in weblogic](https://stackoverflow.com/questions/19804781/how-to-deploy-war-ear-file-from-command-line-in-weblogic) ```bash set CLASSPATH=D:\Weblogic\Middleware\wlserver_10.3\server\lib\weblogic.jar java weblogic.Deployer \ -adminurl t3://localhost:8001 \ -username weblogic \ -deploy \ -name warfilename \ -targets AdminServer,Server-2 \ -source C:\apps\sample.war ``` ### [How to use Weblogic REST API for various management operations – Examples](https://www.middlewareinventory.com/blog/how-to-use-weblogic-rest-api-examples/#Deployment-Related_Tasks_Deploy_Undeploy_Update_Redeploy_Start_Stop) deploy an application ```bash curl -v \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ name: 'mwiapp', applicationPath : '/apps/oracle-weblogic/applications/mwiapp.war', targets: ['mwiCluster1'], plan: '/apps/oracle-weblogic/applications/plan.xml', deploymentOptions: {} }" \ -X POST http://localhost:17001/management/weblogic/latest/domainRuntime/deploymentManager/deploy ``` Get State ```bash curl -v \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ target: 'mwiCluster1' }" \ -X POST http://localhost:17001/management/weblogic/latest/domainRuntime/deploymentManager/appDeploymentRuntimes/mwiapp/getState ``` Get the status of ALL servers in the domain ```bash curl -v \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -X GET http://localhost:17001/management/weblogic/latest/domainRuntime/serverLifeCycleRuntimes?fields=name,state&links=none ``` Get All Deployed Applications Health State ```bash curl --location --request POST 'http://localhost:17001/management/weblogic/latest/domainRuntime/search' \ --header 'X-Requested-By: MyClient' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data-raw '{ "links": [], "fields": [], "children": { "serverRuntimes": { "links": [], "fields": [ "name" ], "children": { "applicationRuntimes": { "links": [], "fields": [ "name", "healthState", "OverallHealthState" ] } } } } }' ```
html
source
debug
Fork me on GitHub