Quantcast
Channel: Developer Feed - Snippet
Viewing all articles
Browse latest Browse all 178

How to check if Weblogic Server is Up via command Line?

$
0
0

Weblogic Command to Bounce PoolThe following command line Windows BAT shell script can be used to remotely found out if the weblogic Server is up and running. It uses weblogic.Admin class/utility to issue a CONNECT command and see if the server is up and running. The weblogic server credentials are needed to authenticate and connect to the server remotely.

<!--break-->Script

@echo off
@rem set environment variable for WebLogic Home
set WL_HOME=f:\bea\weblogic81
@rem set the environment
call %WL_HOME%\server\bin\setWLSEnv.cmd
@rem Run the Administration Command
echo off
java weblogic.Admin -url t3://localhost:7001 -username %1 -password %2 CONNECT
echo off
if %ERRORLEVEL% == 1 (
    echo Server is DOWN.
) else (
    echo Server is UP.
)


Viewing all articles
Browse latest Browse all 178

Trending Articles