Middleware Technologies

Master in Middle-ware Administration.

Blog Post New Entry

view:  full / summary

fixpacks

Posted by chimmili on December 25, 2012 at 3:30 AM Comments comments (0)

can u just post me about fixpacks briefly..... i lossed my interviews due to fixpacks

OSB Admin Quick Reference

Posted by reddykiran on June 8, 2012 at 8:45 AM Comments comments (0)

Application development and integration issues

– Lack of flexibility

– Not standards-based

– Project costs and long duration

Traditional methodologies

– Point-to-point

– Enterprise Application Integration

Service-Oriented Architecture is an IT strategy that organizes the discrete functions contained in enterprise applications into interoperable, standards-based services that can b...

Read Full Post »

PORT FROM PID

Posted by reddykiran on March 6, 2012 at 7:05 AM Comments comments (0)

PORT FROM PID

 

for i in `ls /proc`

 

do

 

pfiles $i | grep AF_INET | grep $1

 

if [ $? -eq 0 ]

 

then

 

echo Is owned by pid $i

 

echo ..

 

fi

 

done

 

 

DISK Space Monitoring DISK Space Monitoring

Posted by reddykiran on March 6, 2012 at 7:05 AM Comments comments (0)

df -h |awk '{ print $5 " " $1 }'| while read output;

 

do

 

 

echo $output

 

usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )

 

partition=$(echo $output | awk '{ print $2 }' )

 

if [ $usep -ge 98 ]; then

 

echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)"|mail -s "Alert: Almost out of disk space $usep%" mail@mail.com

 

Read Full Post »

Ram & CPU usage of Linux Box

Posted by reddykiran on March 6, 2012 at 6:50 AM Comments comments (0)

Ram & CPU usage of Linux Box


idlecpu=`sar -u | tail -1 | awk '{print $8}' | awk -F. '{print $1}'`

bindir=`pwd $0`

 

if [ $idlecpu -lt 15 ]

then

echo "CPU is only $idlecpu % idle" > $bindir/sysreport.txt

fi

 t_ram=`free -m | head -2 | tail -1 | awk '{print $2}'`

f_ram=`free -m | head -3 | tail -1 | awk '{print $4}'`

m_used=`expr $t_ram - $f_ram`

pram=`echo "100*$m_used/$t_ram" |...

Read Full Post »

WAS Admin Tutorial

Posted by reddykiran on March 6, 2012 at 6:10 AM Comments comments (0)

Click the link Below

WAS Admin Tutorial

MQ Tutorial

Posted by reddykiran on March 1, 2012 at 9:20 AM Comments comments (1)

Click the link Below

IBM MQ Tutorial

Jboss Admin Tutorial

Posted by reddykiran on March 1, 2012 at 7:00 AM Comments comments (0)

click the below link

Jboss Admin Tutorial

Jboss Monitoring Scripts

Posted by reddykiran on February 12, 2012 at 12:40 AM Comments comments (0)

JBoss Server Stastics:

#!/bin/sh

Host=`uname -n`

Port=1099

User=admin

Pass=admin

DSNAME=jdbc/eddiDS

FreeMem=`twiddle.sh --server=jnp://$Host:$Port -u $User -p $Pass get jboss.system:type=ServerInfo FreeMemory| cut -f2 -d"="`

MaxMem=`twiddle.sh --server=jnp://$Host:$Port -u $User -p $Pass get jboss.system:type=ServerInfo MaxMemory| cut -f2 -d"="`

ThreadCount=`twiddle.sh --server=jnp://$Host:$Port -u $User -p $Pass get jboss.system:type=Serv...

Read Full Post »

Weblogic Monitoring Scripts.

Posted by reddykiran on February 11, 2012 at 11:40 AM Comments comments (0)

Weblogic Application Status deployed in a Domain:

test.py.properties:

username=weblogic

password=weblogic

AdminListenAdress=127.0.0.1

AdminListenPort=7001

Script:

loadProperties('C:/wlst/test.py.properties')

URL="t3://"+AdminListenAdress+":"+AdminListenPort

urllist={}

try:

connect(username,password,URL)

cd ('AppDeployments')

myapps=cmo...

Read Full Post »

Weblogic Tips

Posted by reddykiran on December 10, 2010 at 4:10 PM Comments comments (1)

SSL

Posted by reddykiran on December 9, 2010 at 6:05 AM Comments comments (2)

Encryption & Decryption


Encryption is the process by which clear information is coded into unclear information for security purposes.


Decryption is the opposite process of encryption, where coded information is transformed into clear information.


Cryptographic Key


Read Full Post »

Thread Dump analysis in Weblogic

Posted by reddykiran on December 8, 2010 at 11:45 AM Comments comments (0)

Thread dump

Snapshot of java ap (X-ray)

We can recognize thread running tread state by “continuous thread dump”

Getting Thread Dump

Unix : kill –3 pid

Windows : Ctrl + Break

using weblogic.admin command,



Read Full Post »

Weblogic Overview

Posted by reddykiran on December 7, 2010 at 10:25 AM Comments comments (3)

Overview


 

Application servers:

 

provide services that support the execution and availability of deployed applications handle heavier processing chores than Web servers.





An Application Server Configuration:


Read Full Post »

Rss_feed