Linuxのプロセス状況表示させるコマンドには「top」コマンドがあります。 このコマンドに似たapacheのアクセス状況をリアルタイムに表示させるコマンドが「apachetop」になります。 デフォルトではインストールされないので、別途インストールする必要があります。 「apachetop」のインストール [root@fedora ~]# yum -y install apachetop Loading "installonlyn" plugin Loading "fastestmirror" plugin Setting up Install Process Setting up repositories core [1/4] crash-hat [2/4] updates [3/4] extras [4/4] Loading mirror speeds from cached hostfile Reading repository metadata in from local files Parsing package install arguments Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Downloading header for apachetop to pack into transaction set. apachetop-0.12.5-4.fc5.i3 100% |=========================| 3.6 kB 00:00 ---> Package apachetop.i386 0:0.12.5-4.fc5 set to be updated --> Running transaction check Dependencies Resolved ============================================================================= Package Arch Version Repository Size ============================================================================= Installing: apachetop i386 0.12.5-4.fc5 extras 32 k Transaction Summary ============================================================================= Install 1 Package(s) Update 0 Package(s) Remove 0 Package(s) Total download size: 32 k Downloading Packages: (1/1): apachetop-0.12.5-4 100% |=========================| 32 kB 00:00 Running Transaction Test Finished Transaction Test Transaction Test Succeeded Running Transaction Installing: apachetop ######################### [1/1] Installed: apachetop.i386 0:0.12.5-4.fc5 Complete! アクセス状況の表示 [root@fedora ~]# apachetop last hit: 02:12:40 atop runtime: 0 days, 00:03:40 02:12:41 All: 65 reqs ( 0.3/sec) 688.4K ( 3422.1B/sec) 10.6K/req 2xx: 65 ( 100%) 3xx: 0 ( 0.0%) 4xx: 0 ( 0.0%) 5xx: 0 ( 0.0%) R ( 30s): 25 reqs ( 0.8/sec) 260.9K ( 8904.1B/sec) 10.4K/req 2xx: 25 ( 100%) 3xx: 0 ( 0.0%) 4xx: 0 ( 0.0%) 5xx: 0 ( 0.0%) REQS REQ/S KB KB/S URL 4 0.29 92.5 6.6*/ 3 0.17 24.5 1.4 /cgi-bin/patio/patio.cgi 2 0.15 9.4 0.7 /postfix_secure_setting.shtml 1 1.00 22.3 22.3 /samba.shtml 1 0.03 14.2 0.5 /cgi-bin/patio/ 1 0.03 3.1 0.1 /apache_deflate.shtml 1 0.04 8.6 0.3 /apache.shtml 1 0.04 5.6 0.2 /vnc.shtml 1 0.05 5.3 0.2 /fedora5_inst.shtml 1 0.05 7.9 0.4 /vsftpd.shtml 1 1.00 7.7 7.7 /postfix.shtml 1 0.06 5.2 0.3 /telnet.shtml 1 0.06 3.6 0.2 /winscp.shtml 1 0.07 4.2 0.3 /putty.shtml 1 0.04 21.5 0.8 /apache_conf.shtml 1 0.10 4.0 0.4 /mail_ssl.shtml ※:「apachetop」はapacheログファイル(/var/log/httpd/access_log)を監視します。 ログファイルを変更している場合は「apachetop」コマンドのオプションに"-f"を付与し、 apacheのログファイルを指定できます。 例) # apachetop -f /var/log/apache_log ※:ログファイルの形式は「common」または「combined」でなければなりません。 |