1828790 Members
2843 Online
109985 Solutions
New Discussion

performance monitor

 
SOLVED
Go to solution
mjsunil
Advisor

performance monitor

Hi, I want to know if there is any good performance monitor tool for linux. I want to monitor the process usage of weblogic,iplanet,oracle9i and get the output in a graph and save it for future use. Also I find that the linux caches most of the memory say about 1.2GB from a total of 2GB RAM,and the oracle listner keeps crashing and the users feel that the server response is very slow. Is there any way we can tweak the system?

rgds - mjs
6 REPLIES 6
Vitaly Karasik_1
Honored Contributor

Re: performance monitor

regarding tuning linux for oracle - I suggest you to start with http://www.puschitz.com/ and
http://otn.oracle.com

regarding monitoring - you have top, sar, iostat and others.

There is several top-like GUI utils - gtop, KDE System Monitor and so on.

As far as I remember, few years ago HP released Glance for linux.

Rgds,
vitaly
Steven E. Protter
Exalted Contributor

Re: performance monitor

There is a Glance for Linux that requires a license and money.

I'm attaching my unadapted HP-UX script that does sar performance data collection. It WILL require adjustment, but if you take the time, I'll give you 10 points for notifying me in any of my threads.

Its a great script.

Also, gtop is built into the GNOME GUI and the top command provides decent data as well.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Nobody's Hero
Valued Contributor

Re: performance monitor

We use a free product called MRGT. You can find it with a search of mrgt. Web based performance monitor that graphs out data.
UNIX IS GOOD
Don_89
Trusted Contributor
Solution

Re: performance monitor

If the Oracle listner keeps crashing the system, your memory/thread semaphores are probably not set correctly.. We have 11 9i servers and never had a problem using the following settings in /etc/sysctl.conf

net.ipv4.ip_local_port_range = 1024 65000
# Disables the magic-sysrq key
kernel.sysrq = 0
#Oracle 9i release 2 parameters
kernel.sem= 250 32000 100 128
fs.file-max=65536
kernel.shmmax=2147483648
kernel.shmmni=4096
kernel.shmall=2097152
fs.aio-max-size=2147483648

also our /etc/security/limits.conf looks like this..

oracle soft nofile 65536
oracle hard nofile 65536
oracle soft nproc 16384
oracle hard nproc 16384

change these files and do a sysctl -p

this will re-read the settings in the above files..
Martin P.J. Zinser
Honored Contributor

Re: performance monitor

Hi,

mentioned earlier

MRTG (Multi Router Traffic grapher)

http://people.ee.ethz.ch/~oetiker/webtools/mrtg/

also (drilling down more on the server)

Big brother

http://bb4.com/features.html

while this is more monitoring related, a number of the tools at

http://www.linuxlinks.com/Software/Monitoring/Load/index.shtml

are actually more analysis slanted.

HTH,

Martin
dirk dierickx
Honored Contributor

Re: performance monitor

Just as a little side note;
soon sarcheck (http://www.sarcheck.com) will also be available for linux.