How to deploy war/ear file from command line in weblogic
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
deploy an application
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
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
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
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"
]
}
}
}
}
}'