{"id":1235,"date":"2012-03-24T15:51:52","date_gmt":"2012-03-24T15:51:52","guid":{"rendered":"https:\/\/noi3.org\/site\/?p=1235"},"modified":"2012-03-24T15:51:52","modified_gmt":"2012-03-24T15:51:52","slug":"20-linux-system-monitoring-tools-every-sysadmin-should-know1","status":"publish","type":"post","link":"https:\/\/site.noi3.org\/?p=1235","title":{"rendered":"20 Linux System Monitoring Tools Every SysAdmin Should Know"},"content":{"rendered":"<div class=\"headline_area\"> \t<img decoding=\"async\" alt=\"\" border=\"0\" src=\"http:\/\/files.cyberciti.biz\/cbzcache\/3rdparty\/linux-logo.png\" \/><\/div>\n<div style=\"float: right; margin-top: 0px; margin-left: 5px;\"> \t&nbsp;<\/div>\n<p> \tNeed to monitor Linux server performance? Try these built-in command and a few add-on tools. Most Linux distributions are equipped with tons of monitoring. These tools provide metrics which can be used to get information about system activities. You can use these tools to find the possible causes of a performance problem.<\/p>\n<p>  <!--more-->  <\/p>\n<p> \tNeed to monitor Linux server performance? Try these built-in command and a few add-on tools. Most Linux distributions are equipped with tons of monitoring. These tools provide metrics which can be used to get information about system activities. You can use these tools to find the possible causes of a performance problem. The commands discussed below are some of the most basic commands when it comes to system analysis and debugging server issues such as:<br \/> \t&nbsp;<\/p>\n<ol>\n<li> \t\tFinding out bottlenecks.<\/li>\n<li> \t\tDisk (storage) bottlenecks.<\/li>\n<li> \t\tCPU and memory bottlenecks.<\/li>\n<li> \t\tNetwork bottlenecks.<\/li>\n<\/ol>\n<p> \t&nbsp;<\/p>\n<h2> \t#1: top &#8211; Process Activity Command<\/h2>\n<p> \tThe top program provides a dynamic real-time view of a running system i.e. actual process activity. By default, it displays the most CPU-intensive tasks running on the server and updates the list every five seconds.<br \/> \t&nbsp;<\/p>\n<div class=\"wp-caption aligncenter\" id=\"attachment_5179\" style=\"width: 269px;\"> \t<a href=\"http:\/\/www.cyberciti.biz\/tips\/top-linux-monitoring-tools.html\/top-output\" rel=\"attachment wp-att-5179\"><img loading=\"lazy\" decoding=\"async\" alt=\"Fig.01: Linux top command\" class=\"size-medium wp-image-5179\" height=\"300\" src=\"http:\/\/files.cyberciti.biz\/uploads\/tips\/2009\/06\/top-output-269x300.png\" title=\"Fig.01: Linux top command\" width=\"269\" \/><\/a>Fig.01: Linux top command<br \/> \t&nbsp;<\/div>\n<h3> \tCommonly Used Hot Keys<\/h3>\n<p> \tThe top command provides several useful hot keys:<br \/> \t&nbsp;<\/p>\n<table border=\"0\">\n<tbody>\n<tr>\n<th> \t\t\t\tHot Key<\/th>\n<th> \t\t\t\tUsage<\/th>\n<\/tr>\n<tr>\n<td> \t\t\t\tt<\/td>\n<td> \t\t\t\tDisplays summary information off and on.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tm<\/td>\n<td> \t\t\t\tDisplays memory information off and on.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tA<\/td>\n<td> \t\t\t\tSorts the display by top consumers of various system resources. Useful for quick identification of performance-hungry tasks on a system.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tf<\/td>\n<td> \t\t\t\tEnters an interactive configuration screen for top. Helpful for setting up top for a specific task.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\to<\/td>\n<td> \t\t\t\tEnables you to interactively select the ordering within top.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tr<\/td>\n<td> \t\t\t\tIssues renice command.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tk<\/td>\n<td> \t\t\t\tIssues kill command.<\/td>\n<\/tr>\n<tr>\n<td> \t\t\t\tz<\/td>\n<td> \t\t\t\tTurn on or off color\/mono<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p> <\/p>\n<p> \t<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> <a href=\"http:\/\/www.cyberciti.biz\/tips\/how-do-i-find-out-linux-cpu-utilization.html\">How do I Find Out Linux CPU Utilization?<\/a><\/p>\n<p> \t<a name=\"2\"><\/a><\/p>\n<p> \t&nbsp;<\/p>\n<h2> \t#2: vmstat &#8211; System Activity, Hardware and System Information<\/h2>\n<p> \tThe command vmstat reports information about processes, memory, paging, block IO, traps, and cpu activity.<br \/> \t<code># vmstat 3<\/code><br \/> \tSample Outputs:<\/p>\n<p> \tprocs &#8211;&#8211;&#8211;&#8211;memory&#8211;&#8211;&#8211;- &#8211;swap&#8211; &#8211;&#8211;io&#8211;- &#8211;system&#8211; &#8211;&#8211;cpu&#8211;&#8211; r b swpd free buff cache si so bi bo in cs us sy id wa st 0 0 0 2540988 522188 5130400 0 0 2 32 4 2 4 1 96 0 0 1 0 0 2540988 522188 5130400 0 0 0 720 1199 665 1 0 99 0 0 0 0 0 2540956 522188 5130400 0 0 0 0 1151 1569 4 1 95 0 0 0 0 0 2540956 522188 5130500 0 0 0 6 1117 439 1 0 99 0 0 0 0 0 2540940 522188 5130512 0 0 0 536 1189 932 1 0 98 0 0 0 0 0 2538444 522188 5130588 0 0 0 0 1187 1417 4 1 96 0 0 0 0 0 2490060 522188 5130640 0 0 0 18 1253 1123 5 1 94 0 0<\/p>\n<h3> \tDisplay Memory Utilization Slabinfo<\/h3>\n<p> \t<code># vmstat -m<\/code><\/p>\n<h3> \tGet Information About Active \/ Inactive Memory Pages<\/h3>\n<p> \t<code># vmstat -a<\/code><br \/> \t<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> <a href=\"http:\/\/www.cyberciti.biz\/tips\/linux-resource-utilization-to-detect-system-bottlenecks.html\">How do I find out Linux Resource utilization to detect system bottlenecks?<\/a><\/p>\n<p> \t<a name=\"3\"><\/a><\/p>\n<h2> \t#3: w &#8211; Find Out Who Is Logged on And What They Are Doing<\/h2>\n<p> \tw command displays information about the users currently on the machine, and their processes.<br \/> \t<code># w username<br \/> \t# w vivek<\/code><br \/> \tSample Outputs:<\/p>\n<p> \t17:58:47 up 5 days, 20:28, 2 users, load average: 0.36, 0.26, 0.24 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT root pts\/0 10.1.3.145 14:55 5.00s 0.04s 0.02s vim \/etc\/resolv.conf root pts\/1 10.1.3.145 17:43 0.00s 0.03s 0.00s w<a name=\"4\"><\/a><br \/> \t&nbsp;<\/p>\n<h3> \t#4: uptime &#8211; Tell How Long The System Has Been Running<\/h3>\n<p> \tThe uptime command can be used to see how long the server has been running. The current time, how long the system has been running, how many users are currently logged on, and the system load averages for the past 1, 5, and 15 minutes.<br \/> \t<code># uptime<\/code><br \/> \tOutput:<\/p>\n<p> \t18:02:41 up 41 days, 23:42, 1 user, load average: 0.00, 0.00, 0.001 can be considered as optimal load value. The load can change from system to system. For a single CPU system 1 &#8211; 3 and SMP systems 6-10 load value might be acceptable.<\/p>\n<p> \t<a name=\"5\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#5: ps &#8211; Displays The Processes<\/h2>\n<p> \tps command will report a snapshot of the current processes. To select all processes use the -A or -e option:<br \/> \t<code># ps -A<\/code><br \/> \tSample Outputs:<\/p>\n<p> \tPID TTY TIME CMD 1 ? 00:00:02 init 2 ? 00:00:02 migration\/0 3 ? 00:00:01 ksoftirqd\/0 4 ? 00:00:00 watchdog\/0 5 ? 00:00:00 migration\/1 6 ? 00:00:15 ksoftirqd\/1 &#8230;. &#8230;.. 4881 ? 00:53:28 java 4885 tty1 00:00:00 mingetty 4886 tty2 00:00:00 mingetty 4887 tty3 00:00:00 mingetty 4888 tty4 00:00:00 mingetty 4891 tty5 00:00:00 mingetty 4892 tty6 00:00:00 mingetty 4893 ttyS1 00:00:00 agetty 12853 ? 00:00:00 cifsoplockd 12854 ? 00:00:00 cifsdnotifyd 14231 ? 00:10:34 lighttpd 14232 ? 00:00:00 php-cgi 54981 pts\/0 00:00:00 vim 55465 ? 00:00:00 php-cgi 55546 ? 00:00:00 bind9-snmp-stat 55704 pts\/1 00:00:00 psps is just like top but provides more information.<br \/> \t&nbsp;<\/p>\n<h3> \tShow Long Format Output<\/h3>\n<p> \t<code># ps -Al<\/code><br \/> \tTo turn on extra full mode (it will show command line arguments passed to process):<br \/> \t<code># ps -AlF<\/code><\/p>\n<h3> \tTo See Threads ( LWP and NLWP)<\/h3>\n<p> \t<code># ps -AlFH<\/code><\/p>\n<h3> \tTo See Threads After Processes<\/h3>\n<p> \t<code># ps -AlLm<\/code><\/p>\n<h3> \tPrint All Process On The Server<\/h3>\n<p> \t<code># ps ax<br \/> \t# ps axu<\/code><\/p>\n<h3> \tPrint A Process Tree<\/h3>\n<p> \t<code># ps -ejH<br \/> \t# ps axjf<br \/> \t# pstree<\/code><\/p>\n<h3> \tPrint Security Information<\/h3>\n<p> \t<code># ps -eo euser,ruser,suser,fuser,f,comm,label<br \/> \t# ps axZ<br \/> \t# ps -eM<\/code><\/p>\n<h3> \tSee Every Process Running As User Vivek<\/h3>\n<p> \t<code># ps -U vivek -u vivek u<\/code><\/p>\n<h3> \tSet Output In a User-Defined Format<\/h3>\n<p> \t<code># ps -eo pid,tid,class,rtprio,ni,pri,psr,pcpu,stat,wchan:14,comm<br \/> \t# ps axo stat,euid,ruid,tty,tpgid,sess,pgrp,ppid,pid,pcpu,comm<br \/> \t# ps -eopid,tt,user,fname,tmout,f,wchan<\/code><\/p>\n<h3> \tDisplay Only The Process IDs of Lighttpd<\/h3>\n<p> \t<code># ps -C lighttpd -o pid=<\/code><br \/> \tOR<br \/> \t<code># pgrep lighttpd<\/code><br \/> \tOR<br \/> \t<code># pgrep -u vivek php-cgi<\/code><\/p>\n<h3> \tDisplay The Name of PID 55977<\/h3>\n<p> \t<code># ps -p 55977 -o comm=<\/code><\/p>\n<h3> \tFind Out The Top 10 Memory Consuming Process<\/h3>\n<p> \t<code># ps -auxf | sort -nr -k 4 | head -10<\/code><\/p>\n<h3> \tFind Out top 10 CPU Consuming Process<\/h3>\n<p> \t<code># ps -auxf | sort -nr -k 3 | head -10<\/code><\/p>\n<p> \t<a name=\"6\"><\/a><\/p>\n<h2> \t#6: free &#8211; Memory Usage<\/h2>\n<p> \tThe command free displays the total amount of free and used physical and swap memory in the system, as well as the buffers used by the kernel.<br \/> \t<code># free <\/code><br \/> \tSample Output:<\/p>\n<p> \ttotal used free shared buffers cached Mem: 12302896 9739664 2563232 0 523124 5154740 -\/+ buffers\/cache: 4061800 8241096 Swap: 1052248 0 1052248<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> :<br \/> \t&nbsp;<\/p>\n<ol>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/faq\/linux-check-the-size-of-pagesize\/\">Linux Find Out Virtual Memory PAGESIZE<\/a><\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/faq\/cpu-usage-limiter-for-linux\/\">Linux Limit CPU Usage Per Process<\/a><\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/how-much-ram-does-my-linux-system.html\">How much RAM does my Ubuntu \/ Fedora Linux desktop PC have?<\/a><\/li>\n<\/ol>\n<p> \t<a name=\"7\"><\/a><\/p>\n<h2> \t#7: iostat &#8211; Average CPU Load, Disk Activity<\/h2>\n<p> \tThe command iostat report Central Processing Unit (CPU) statistics and input\/output statistics for devices, partitions and network filesystems (NFS).<br \/> \t<code># iostat <\/code><br \/> \tSample Outputs:<\/p>\n<p> \tLinux 2.6.18-128.1.14.el5 (www03.nixcraft.in) 06\/26\/2009 avg-cpu: %user %nice %system %iowait %steal %idle 3.50 0.09 0.51 0.03 0.00 95.86 Device: tps Blk_read\/s Blk_wrtn\/s Blk_read Blk_wrtn sda 22.04 31.88 512.03 16193351 260102868 sda1 0.00 0.00 0.00 2166 180 sda2 22.04 31.87 512.03 16189010 260102688 sda3 0.00 0.00 0.00 1615 0<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> : <a href=\"http:\/\/www.cyberciti.biz\/faq\/howto-linux-track-nfs-client-disk-metrics\/\">Linux Track NFS Directory \/ Disk I\/O Stats<\/a><\/p>\n<p> \t<a name=\"8\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#8: sar &#8211; Collect and Report System Activity<\/h2>\n<p> \tThe sar command is used to collect, report, and save system activity information. To see network counter, enter:<br \/> \t<code># sar -n DEV | more<\/code><br \/> \tTo display the network counters from the 24th:<br \/> \t<code># sar -n DEV -f \/var\/log\/sa\/sa24 | more<\/code><br \/> \tYou can also display real time usage using sar:<br \/> \t<code># sar 4 5<\/code><br \/> \tSample Outputs:<\/p>\n<p> \tLinux 2.6.18-128.1.14.el5 (www03.nixcraft.in) 06\/26\/2009 06:45:12 PM CPU %user %nice %system %iowait %steal %idle 06:45:16 PM all 2.00 0.00 0.22 0.00 0.00 97.78 06:45:20 PM all 2.07 0.00 0.38 0.03 0.00 97.52 06:45:24 PM all 0.94 0.00 0.28 0.00 0.00 98.78 06:45:28 PM all 1.56 0.00 0.22 0.00 0.00 98.22 06:45:32 PM all 3.53 0.00 0.25 0.03 0.00 96.19 Average: all 2.02 0.00 0.27 0.01 0.00 97.70<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> : <a href=\"http:\/\/www.cyberciti.biz\/tips\/howto-write-system-utilization-data-to-file.html\">How to collect Linux system utilization data into a file<\/a><\/p>\n<p> \t<a name=\"9\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#9: mpstat &#8211; Multiprocessor Usage<\/h2>\n<p> \tThe mpstat command displays activities for each available processor, processor 0 being the first one. mpstat -P ALL to display average CPU utilization per processor:<br \/> \t<code># mpstat -P ALL<\/code><br \/> \tSample Output:<\/p>\n<p> \tLinux 2.6.18-128.1.14.el5 (www03.nixcraft.in) 06\/26\/2009 06:48:11 PM CPU %user %nice %sys %iowait %irq %soft %steal %idle intr\/s 06:48:11 PM all 3.50 0.09 0.34 0.03 0.01 0.17 0.00 95.86 1218.04 06:48:11 PM 0 3.44 0.08 0.31 0.02 0.00 0.12 0.00 96.04 1000.31 06:48:11 PM 1 3.10 0.08 0.32 0.09 0.02 0.11 0.00 96.28 34.93 06:48:11 PM 2 4.16 0.11 0.36 0.02 0.00 0.11 0.00 95.25 0.00 06:48:11 PM 3 3.77 0.11 0.38 0.03 0.01 0.24 0.00 95.46 44.80 06:48:11 PM 4 2.96 0.07 0.29 0.04 0.02 0.10 0.00 96.52 25.91 06:48:11 PM 5 3.26 0.08 0.28 0.03 0.01 0.10 0.00 96.23 14.98 06:48:11 PM 6 4.00 0.10 0.34 0.01 0.00 0.13 0.00 95.42 3.75 06:48:11 PM 7 3.30 0.11 0.39 0.03 0.01 0.46 0.00 95.69 76.89<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> : <a href=\"http:\/\/www.cyberciti.biz\/faq\/linux-mpstat-command-report-processors-related-statistics\/\">Linux display each multiple SMP CPU processors utilization individually<\/a>.<\/p>\n<p> \t<a name=\"10\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#10: pmap &#8211; Process Memory Usage<\/h2>\n<p> \tThe command pmap report memory map of a process. Use this command to find out causes of memory bottlenecks.<br \/> \t<code># pmap -d PID<\/code><br \/> \tTo display process memory information for pid # 47394, enter:<br \/> \t<code># pmap -d 47394<\/code><br \/> \tSample Outputs:<\/p>\n<p> \t47394: \/usr\/bin\/php-cgi Address Kbytes Mode Offset Device Mapping 0000000000400000 2584 r-x&#8211; 0000000000000000 008:00002 php-cgi 0000000000886000 140 rw&#8211; 0000000000286000 008:00002 php-cgi 00000000008a9000 52 rw&#8211; 00000000008a9000 000:00000 [ anon ] 0000000000aa8000 76 rw&#8211; 00000000002a8000 008:00002 php-cgi 000000000f678000 1980 rw&#8211; 000000000f678000 000:00000 [ anon ] 000000314a600000 112 r-x&#8211; 0000000000000000 008:00002 ld-2.5.so 000000314a81b000 4 r&#8211;- 000000000001b000 008:00002 ld-2.5.so 000000314a81c000 4 rw&#8211; 000000000001c000 008:00002 ld-2.5.so 000000314aa00000 1328 r-x&#8211; 0000000000000000 008:00002 libc-2.5.so 000000314ab4c000 2048 &#8211;&#8211; 000000000014c000 008:00002 libc-2.5.so &#8230;.. &#8230;&#8230; .. 00002af8d48fd000 4 rw&#8211; 0000000000006000 008:00002 xsl.so 00002af8d490c000 40 r-x&#8211; 0000000000000000 008:00002 libnss_files-2.5.so 00002af8d4916000 2044 &#8211;&#8211; 000000000000a000 008:00002 libnss_files-2.5.so 00002af8d4b15000 4 r&#8211;- 0000000000009000 008:00002 libnss_files-2.5.so 00002af8d4b16000 4 rw&#8211; 000000000000a000 008:00002 libnss_files-2.5.so 00002af8d4b17000 768000 rw-s- 0000000000000000 000:00009 zero (deleted) 00007fffc95fe000 84 rw&#8211; 00007ffffffea000 000:00000 [ stack ] ffffffffff600000 8192 &#8211;&#8211; 0000000000000000 000:00000 [ anon ] mapped: 933712K writeable\/private: 4304K shared: 768000KThe last line is very important:<br \/> \t&nbsp;<\/p>\n<ul>\n<li> \t\t<strong>mapped: 933712K<\/strong> total amount of memory mapped to files<\/li>\n<li> \t\t<strong>writeable\/private: 4304K<\/strong> the amount of private address space<\/li>\n<li> \t\t<strong>shared: 768000K<\/strong> the amount of address space this process is sharing with others<\/li>\n<\/ul>\n<p> \t<strong><span style=\"color: #003366;\">=&gt; Related:<\/span><\/strong> : <a href=\"http:\/\/www.cyberciti.biz\/tips\/howto-find-memory-used-by-program.html\">Linux find the memory used by a program \/ process using pmap command<\/a><\/p>\n<p> \t<a name=\"11\"><\/a><\/p>\n<h2> \t#11 and #12: netstat and ss &#8211; Network Statistics<\/h2>\n<p> \tThe command netstat displays network connections, routing tables, interface statistics, masquerade connections, and multicast memberships. ss command is used to dump socket statistics. It allows showing information similar to netstat. See the following resources about ss and netstat commands:<br \/> \t&nbsp;<\/p>\n<ul>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/linux-investigate-sockets-network-connections.html\">ss: Display Linux TCP \/ UDP Network and Socket Information<\/a><\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/netstat-command-tutorial-examples.html\">Get Detailed Information About Particular IP address Connections Using netstat Command<\/a><\/li>\n<\/ul>\n<p> \t<a name=\"13\"><\/a><\/p>\n<h2> \t#13: iptraf &#8211; Real-time Network Statistics<\/h2>\n<p> \tThe iptraf command is interactive colorful IP LAN monitor. It is an ncurses-based IP LAN monitor that generates various network statistics including TCP info, UDP counts, ICMP and OSPF information, Ethernet load info, node stats, IP checksum errors, and others. It can provide the following info in easy to read format:<br \/> \t&nbsp;<\/p>\n<ul>\n<li> \t\tNetwork traffic statistics by TCP connection<\/li>\n<li> \t\tIP traffic statistics by network interface<\/li>\n<li> \t\tNetwork traffic statistics by protocol<\/li>\n<li> \t\tNetwork traffic statistics by TCP\/UDP port and by packet size<\/li>\n<li> \t\tNetwork traffic statistics by Layer2 address<\/li>\n<\/ul>\n<div class=\"wp-caption aligncenter\" id=\"attachment_5196\" style=\"width: 600px;\"> \t<a href=\"http:\/\/www.cyberciti.biz\/tips\/top-linux-monitoring-tools.html\/iptraf3\" rel=\"attachment wp-att-5196\"><img loading=\"lazy\" decoding=\"async\" alt=\"Fig.02: General interface statistics: IP traffic statistics by network interface \" class=\"size-full wp-image-5196\" height=\"347\" src=\"http:\/\/files.cyberciti.biz\/uploads\/tips\/2009\/06\/iptraf3.png\" title=\"Fig.02: General interface statistics: IP traffic statistics by network interface \" width=\"600\" \/><\/a>Fig.02: General interface statistics: IP traffic statistics by network interface<br \/> \t&nbsp;<\/div>\n<div class=\"wp-caption aligncenter\" id=\"attachment_5195\" style=\"width: 600px;\"> \t<a href=\"http:\/\/www.cyberciti.biz\/tips\/top-linux-monitoring-tools.html\/iptraf2\" rel=\"attachment wp-att-5195\"><img loading=\"lazy\" decoding=\"async\" alt=\"Fig.03 Network traffic statistics by TCP connection\" class=\"size-full wp-image-5195\" height=\"416\" src=\"http:\/\/files.cyberciti.biz\/uploads\/tips\/2009\/06\/iptraf2.png\" title=\"Fig.03 Network traffic statistics by TCP connection\" width=\"600\" \/><\/a>Fig.03 Network traffic statistics by TCP connection<br \/> \t&nbsp;<\/div>\n<p> \t<a name=\"14\"><\/a><\/p>\n<h2> \t#14: tcpdump &#8211; Detailed Network Traffic Analysis<\/h2>\n<p> \tThe tcpdump is simple command that dump traffic on a network. However, you need good understanding of TCP\/IP protocol to utilize this tool. For.e.g to display traffic info about DNS, enter:<br \/> \t<code># tcpdump -i eth1 &#39;udp port 53&#39;<\/code><br \/> \tTo display all IPv4 HTTP packets to and from port 80, i.e. print only packets that contain data, not, for example, SYN and FIN packets and ACK-only packets, enter:<br \/> \t<code># tcpdump &#39;tcp port 80 and (((ip[2:2] - ((ip[0]&amp;0xf)&lt;&lt;2)) - ((tcp[12]&amp;0xf0)&gt;&gt;2)) != 0)&#39;<\/code><br \/> \tTo display all FTP session to 202.54.1.5, enter:<br \/> \t<code># tcpdump -i eth1 &#39;dst 202.54.1.5 and (port 21 or 20&#39;<\/code><br \/> \tTo display all HTTP session to 192.168.1.5:<br \/> \t<code># tcpdump -ni eth0 &#39;dst 192.168.1.5 and tcp and port http&#39;<\/code><br \/> \tUse <a href=\"http:\/\/www.cyberciti.biz\/faq\/linux-unix-bsd-apache-tcpdump-http-packets-sniffing\/\">wireshark to view detailed<\/a> information about files, enter:<br \/> \t<code># tcpdump -n -i eth1 -s 0 -w output.txt src or dst port 80<\/code><\/p>\n<p> \t<a name=\"15\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#15: strace &#8211; System Calls<\/h2>\n<p> \tTrace system calls and signals. This is useful for debugging webserver and other server problems. See how to use to <a href=\"http:\/\/www.cyberciti.biz\/tips\/linux-strace-command-examples.html\">trace the process and<\/a> see What it is doing.<\/p>\n<p> \t<a name=\"16\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#16: \/Proc file system &#8211; Various Kernel Statistics<\/h2>\n<p> \t\/proc file system provides detailed information about various hardware devices and other Linux kernel information. See <a href=\"https:\/\/noi3.org\/site\/wp-content\/uploads\/2012\/03\/proc.txt\">Linux kernel \/proc<\/a> documentations for further details. Common \/proc examples:<br \/> \t<code># cat \/proc\/cpuinfo<br \/> \t# cat \/proc\/meminfo<br \/> \t# cat \/proc\/zoneinfo<br \/> \t# cat \/proc\/mounts<\/code><\/p>\n<p> \t<a name=\"17\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t17#: Nagios &#8211; Server And Network Monitoring<\/h2>\n<p> \t<a href=\"http:\/\/www.nagios.org\/\" target=\"_blank\">Nagios<\/a> is a popular open source computer system and network monitoring application software. You can easily monitor all your hosts, network equipment and services. It can send alert when things go wrong and again when they get better. <a href=\"http:\/\/fannagioscd.sourceforge.net\/drupal\/\" target=\"_blank\">FAN is<\/a> &quot;Fully Automated Nagios&quot;. FAN goals are to provide a Nagios installation including most tools provided by the Nagios Community. FAN provides a CDRom image in the standard ISO format, making it easy to easilly install a Nagios server. Added to this, a wide bunch of tools are including to the distribution, in order to improve the user experience around Nagios.<\/p>\n<p> \t<a name=\"18\"><\/a><\/p>\n<h2> \t18#: Cacti &#8211; Web-based Monitoring Tool<\/h2>\n<p> \tCacti is a complete network graphing solution designed to harness the power of RRDTool&#39;s data storage and graphing functionality. Cacti provides a fast poller, advanced graph templating, multiple data acquisition methods, and user management features out of the box. All of this is wrapped in an intuitive, easy to use interface that makes sense for LAN-sized installations up to complex networks with hundreds of devices. It can provide data about network, CPU, memory, logged in users, Apache, DNS servers and much more. See how <a href=\"http:\/\/www.cyberciti.biz\/faq\/fedora-rhel-install-cacti-monitoring-rrd-software\/\">to install and configure Cacti network graphing<\/a> tool under CentOS \/ RHEL.<\/p>\n<p> \t<a name=\"19\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#19: KDE System Guard &#8211; Real-time Systems Reporting and Graphing<\/h2>\n<p> \tKSysguard is a network enabled task and system monitor application for KDE desktop. This tool can be run over ssh session. It provides lots of features such as a client\/server architecture that enables monitoring of local and remote hosts. The graphical front end uses so-called sensors to retrieve the information it displays. A sensor can return simple values or more complex information like tables. For each type of information, one or more displays are provided. Displays are organized in worksheets that can be saved and loaded independently from each other. So, KSysguard is not only a simple task manager but also a very powerful tool to control large server farms.<br \/> \t&nbsp;<\/p>\n<div class=\"wp-caption aligncenter\" id=\"attachment_5215\" style=\"width: 600px;\"> \t<a href=\"http:\/\/www.cyberciti.biz\/tips\/top-linux-monitoring-tools.html\/kde-systemguard-screenshot\" rel=\"attachment wp-att-5215\"><img loading=\"lazy\" decoding=\"async\" alt=\"Fig.05 KDE System Guard\" class=\"size-full wp-image-5215\" height=\"462\" src=\"http:\/\/files.cyberciti.biz\/uploads\/tips\/2009\/06\/kde-systemguard-screenshot.png\" title=\"Fig.05 KDE System Guard KDE task manager and performance monitor.\" width=\"600\" \/><\/a>Fig.05 KDE System Guard {Image credit: Wikipedia}<br \/> \t&nbsp;<\/div>\n<p> \tSee <a href=\"http:\/\/docs.kde.org\/stable\/en\/kdebase-workspace\/ksysguard\/index.html\">the KSysguard handbook<\/a> for detailed usage.<\/p>\n<p> \t<a name=\"20\"><\/a><br \/> \t&nbsp;<\/p>\n<h2> \t#20: Gnome System Monitor &#8211; Real-time Systems Reporting and Graphing<\/h2>\n<p> \tThe System Monitor application enables you to display basic system information and monitor system processes, usage of system resources, and file systems. You can also use System Monitor to modify the behavior of your system. Although not as powerful as the KDE System Guard, it provides the basic information which may be useful for new users:<br \/> \t&nbsp;<\/p>\n<ul>\n<li> \t\tDisplays various basic information about the computer&#39;s hardware and software.<\/li>\n<li> \t\tLinux Kernel version<\/li>\n<li> \t\tGNOME version<\/li>\n<li> \t\tHardware<\/li>\n<li> \t\tInstalled memory<\/li>\n<li> \t\tProcessors and speeds<\/li>\n<li> \t\tSystem Status<\/li>\n<li> \t\tCurrently available disk space<\/li>\n<li> \t\tProcesses<\/li>\n<li> \t\tMemory and swap space<\/li>\n<li> \t\tNetwork usage<\/li>\n<li> \t\tFile Systems<\/li>\n<li> \t\tLists all mounted filesystems along with basic information about each.<\/li>\n<\/ul>\n<div class=\"wp-caption aligncenter\" id=\"attachment_5220\" style=\"width: 600px;\"> \t<a href=\"http:\/\/www.cyberciti.biz\/tips\/top-linux-monitoring-tools.html\/gnome-system-monitor\" rel=\"attachment wp-att-5220\"><img loading=\"lazy\" decoding=\"async\" alt=\"Fig.06 The Gnome System Monitor application\" class=\"size-full wp-image-5220\" height=\"451\" src=\"http:\/\/files.cyberciti.biz\/uploads\/tips\/2009\/06\/gnome-system-monitor.png\" title=\"Fig.06 The Gnome System Monitor application\" width=\"600\" \/><\/a>Fig.06 The Gnome System Monitor application<br \/> \t&nbsp;<\/div>\n<h2> \tBonus: Additional Tools<\/h2>\n<p> \tA few more tools:<br \/> \t&nbsp;<\/p>\n<ul>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/linux-scanning-network-for-open-ports.html\">nmap<\/a> &#8211; scan your server for open ports.<\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/tag\/lsof-command\">lsof<\/a> &#8211; list open files, network connections and much more.<\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/faq\/debian-ubuntu-install-ntop-network-traffic-monitoring-software\/\" title=\"Debian \/ Ubuntu Linux Install ntop To See Network Usage \/ Network Status\">ntop<\/a> web based tool &#8211; ntop is the best tool to see network usage in a way similar to what top command does for processes i.e. it is network traffic monitoring software. You can see network status, protocol wise distribution of traffic for UDP, TCP, DNS, HTTP and other protocols.<\/li>\n<li> \t\t<a href=\"http:\/\/conky.sourceforge.net\/\" target=\"_blank\">Conky<\/a> &#8211; Another good monitoring tool for the X Window System. It is highly configurable and is able to monitor many system variables including the status of the CPU, memory, swap space, disk storage, temperatures, processes, network interfaces, battery power, system messages, e-mail inboxes etc.<\/li>\n<li> \t\t<a href=\"http:\/\/members.dslextreme.com\/users\/billw\/gkrellm\/gkrellm.html\" target=\"_blank\">GKrellM<\/a> &#8211; It can be used to monitor the status of CPUs, main memory, hard disks, network interfaces, local and remote mailboxes, and many other things.<\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/keeping-a-log-of-daily-network-traffic-for-adsl-or-dedicated-remote-linux-box.html\">vnstat<\/a> &#8211; vnStat is a console-based network traffic monitor. It keeps a log of hourly, daily and monthly network traffic for the selected interface(s).<\/li>\n<li> \t\t<a href=\"http:\/\/htop.sourceforge.net\/\" target=\"_blank\">htop<\/a> &#8211; htop is an enhanced version of top, the interactive process viewer, which can display the list of processes in a tree form.<\/li>\n<li> \t\t<a href=\"http:\/\/www.cyberciti.biz\/tips\/finding-out-a-bad-or-simply-overloaded-network-link-with-linuxunix-oses.html\">mtr<\/a> &#8211; mtr combines the functionality of the traceroute and ping programs in a single network diagnostic tool.<\/li>\n<\/ul>\n<hr \/>\n<p> \t&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Need to monitor Linux server performance? Try these built-in command and a few add-on tools. Most Linux distributions are equipped with tons of monitoring.&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[30],"tags":[544,312,206,543],"class_list":["post-1235","post","type-post","status-publish","format-standard","hentry","category-informatica","tag-comenzi","tag-linux","tag-server","tag-sysadim"],"_links":{"self":[{"href":"https:\/\/site.noi3.org\/index.php?rest_route=\/wp\/v2\/posts\/1235","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/site.noi3.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/site.noi3.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/site.noi3.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/site.noi3.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1235"}],"version-history":[{"count":0,"href":"https:\/\/site.noi3.org\/index.php?rest_route=\/wp\/v2\/posts\/1235\/revisions"}],"wp:attachment":[{"href":"https:\/\/site.noi3.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1235"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/site.noi3.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1235"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/site.noi3.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1235"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}