How can i get the state of weblogic server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How can i get the state of weblogic server
# 1  
Old 12-16-2011
How can i get the state of weblogic server

Hi, all

Now i want write a shell to get the state of weblogic server,and when the Managed Server's state is not ok, after 3 times checking, i will send msg to the system administrator by sms.

BTW, my environment is :

Linux ,Redhat 5.4 64bit
weblogic version: 10.3.3
the count number of Managed server is 4


How can i write the shell ? I am unfamiliar with shell.

Thanks.
# 2  
Old 12-16-2011
WLST and python are probably the most common ways to do this.

Example code:
WLST My Experiments: Server State using WLST

Write python code that displays the status. Use the above example. Assume you choose UP and DOWN as your personal interpretation of the weblogic status codes. That means we get either "UP" or "DOWN" from your python code.
Let's call it WLST.py

The shell to do this is simple. First create a file (call it email_addr) that has email/SMS addesses. SMS email address is a phone number with the carrier name:
Code:
5555555555@verizon.com \
[put as many email addresses as you need, one to a line followed by [space]\ ]
jsmith@mycompany.com

casll the script WLST.shl
Code:
#!/bin/bash
# script: WLST.shl check weblogic status
. /etc/profile 
[ -r  ~/.profile ] && .  ~/.profile   # execute login script
email_addr=$( cat  /path/to/email_addr)
cnt=0

for i in 1 2 3
do
    result=$( /path/to/WLST.py  )
    # result should only be "UP" or "DOWN"
    [ $result = "DOWN" ]  && cnt=$(( $cnt + 1 ))
    sleep 10
done
if [ $cnt -eq 3 ]; then
  echo "weblogic is down $(date)" | mailx  -s 'WARN weblogic down'  $email_addr
fi

set the script file to execute:
Code:
chmod +x WLST.shl

Finally add this to your crontab (use crontab -e )
Code:
* * * * * /path/to/my/WLST.shl  > /path/to/WLST.log 2&>1

Save the crontab entry.

This will run the script every minute, every day and with three failures you get email/TEXT.

read the crontab man page because getting a text message every minute may not be very helpful - change the runs to be every 5 minutes if you want.
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Version of Weblogic server

Hi All, How to find the version of the weblogic server configured? Our server is a Linux based server. Regards Dhivya (1 Reply)
Discussion started by: dhivya.enjoy
1 Replies

2. UNIX and Linux Applications

Exception in Weblogic Application server

Hi, I have a application running on weblogic server. i am getting these errors in logs very frequently. Could you please suggest any solution for this. -02-09 10:02:32,346 ERROR psn.properties.RemotePropertiesCache - Error occurred while attempting to retrieve property: ... (0 Replies)
Discussion started by: Siddheshk
0 Replies

3. Solaris

Problem in deployment in weblogic server in solaris

I am getting following error during deployment in solaris. when i deploy same war in other machine (non-solaris) it works fine. the stacktrace is < ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1277738498407> <BEA-149205> <Failed to initialize the... (0 Replies)
Discussion started by: paradesi143
0 Replies

4. Shell Programming and Scripting

Get the STATE of the weblogic instances via shell script.

Can I get the STATE(instance are RUNNING or not and HEALTH is OK or not) of the weblogic instances(Admin and Managed) running on my unix machine via shell script. Someone told me that it can be done via "weblogic.Admin GETSTATE"....but it is not working for me(might be I am doing something wrong)... (2 Replies)
Discussion started by: joshilalit2004
2 Replies

5. Solaris

Veritas WebLogic Server log files

Hi All, I am trying to change the log file to an incremental log file so that I do not needd to restart weblogic everytime the server /tmp directory reach 100% usage. I want to make it an incremental log, just like adm messages. At the moment, operation process is written to a log file (eg:... (1 Reply)
Discussion started by: ronny_nch
1 Replies

6. UNIX for Dummies Questions & Answers

difference weblogic server/webserver/app server

Hi All, I am getting confused with the terms below. All I know is an application can be installed on a server. But I see the following terms used in a company. All of them are installed on same Unix box. Could you please help me out in layman terms as to what these exactly means. (PS: I don't... (1 Reply)
Discussion started by: tostay2003
1 Replies
Login or Register to Ask a Question