$value ) if( $value['eid'] == $eid ) return $value; return null; } function RecommendedEntry_updateIndexFile( $eid_updated, $eid, $direction ) { $filename = '/var/www/VirtualDomain/kenji00.com/blog/recommend_data'; is_dir( $filename ) || mkdir( $filename ); $filename .= '/'. substr( $eid_updated, -1 ); is_dir( $filename ) || mkdir( $filename ); $filename .= sprintf( '/%d.txt', $eid_updated); file_exists( $filename ) || touch( $filename ); $fp = @fopen( $filename, 'r+' ); if( $fp ) { if( flock( $fp, LOCK_EX | LOCK_NB )) { $ret = ''; $not_found = 1; while( !feof( $fp ) && ( $buf = fgets( $fp ))) { list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf ); if( $eid == $_eid ) { $not_found = 0; $direction ? $_n1++ : $_n0++; } $ret .= sprintf( "%d\t%d\t%d\n", $_eid, $_n0, $_n1 ); } if( $not_found ) $ret .= sprintf( "%d\t%d\t%d\n", $eid, 1 - $direction, $direction); rewind( $fp ); fwrite( $fp, $ret, strlen( $ret )); } fclose( $fp ); } } function RecommendedEntry_incoming() { $eid_prev = $_COOKIE['mtrcmnd_eid']; if( isset( $eid_prev )) { if( $eid_prev != 130 && RecommendedEntry_getEntryData( $eid_prev )) { RecommendedEntry_updateIndexFile( 130, $eid_prev, 0 /*incoming_from*/ ); RecommendedEntry_updateIndexFile( $eid_prev, 130, 1 /*outgoing_to*/ ); } } else { RecommendedEntry_updateIndexFile( 130, 130, 0 /*incoming_from*/ ); } } RecommendedEntry_incoming(); function RecommendedEntry_outgoing() { setcookie( 'mtrcmnd_eid', 130, time() + 2592000, '/' ); } RecommendedEntry_outgoing(); function RecommendedEntry_initialize( $mode = 0 ) { global $RecommendedEntry_table; $RecommendedEntry_table = array(); $filename = '/var/www/VirtualDomain/kenji00.com/blog/recommend_data/'. substr( '130', -1 ). '/130.txt'; $fp = @fopen( $filename, 'r' ); if( $fp ) { if( flock( $fp, LOCK_SH | LOCK_NB )) { while( !feof( $fp ) && ( $buf = fgets( $fp ))) { list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf ); if( 130 == $_eid ) continue; else if( $mode == 1 ) $RecommendedEntry_table{$_eid} = $_n0; else if( $mode == 2 ) $RecommendedEntry_table{$_eid} = $_n1; else $RecommendedEntry_table{$_eid} = $_n0 + $_n1; } arsort( $RecommendedEntry_table, SORT_NUMERIC ); } fclose( $fp ); } } function RecommendedEntry_GetEntry( $_index ) { global $RecommendedEntry_table; foreach( $RecommendedEntry_table as $eid => $count ) { if( --$_index ) continue; $entry = RecommendedEntry_getEntryData( $eid ); if( $entry ) $entry['count'] = $count; return $entry; } } ?> CentOS3卒業(メモ) - 寝不足にて候(仮)
Jan
19
2008

CentOS3卒業(メモ)

ハイ。このサイトを動かしているOSは、CentOS3。
Full Updates期間は終了し現在はMaintenance Updates中。(2010 年10月31日まで)
当然、新しいソフトウェアは提供されません。

クララオンラインのVPSを契約しており、初期費用はかからないのでCentOS5に移行する予定ですが、その前に月額6,980円のVPSでちょっとだけ設定ファイルを弄った状態でのパフォーマンスをメモ。(既にApacheもMysqlもPHPも設定含め吊るしのモノではありませんが.....)

sysstatもsnmpもインストールしていないので、わかりやすいところでWebサーバのレスポンスチェックを。

[XOOPSなVirtualhostに100リクエスト/10同時リクエストでApacheBenchの結果]

$ ab -n 100 -c 10 http://***.kenji00.com/
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.121.2.1 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking ***.kenji00.com (be patient)...

Server Software: Apache
Server Hostname: ***.kenji00.com
Server Port: 80

Document Path: /
Document Length: 14469 bytes

Concurrency Level: 10
Time taken for tests: 43.721657 seconds
Complete requests: 100
Failed requests: 1
(Connect: 0, Length: 1, Exceptions: 0)
Write errors: 0
Total transferred: 1473793 bytes
HTML transferred: 1432744 bytes
Requests per second: 2.29 [#/sec] (mean)
Time per request: 4372.166 [ms] (mean)
Time per request: 437.217 [ms] (mean, across all concurrent requests)
Transfer rate: 32.91 [Kbytes/sec] received

Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.9 0 6
Processing: 1564 4286 2560.6 3744 16586
Waiting: 1492 4058 2517.3 3520 16531
Total: 1564 4286 2560.5 3744 16586

Percentage of the requests served within a certain time (ms)
50% 3744
66% 4473
75% 4726
80% 5043
90% 7174
95% 10288
98% 13518
99% 16586
100% 16586 (longest request)


この状態で、マシンの負荷が

$ uptime ; free
00:30:52 up 11 days, 2:42, 2 users, load average: 7.36, 1.92, 0.97

total used free shared buffers cached
Mem: 6220504 6182828 37676 0 248224 2705860
-/+ buffers/cache: 3228744 2991760
Swap: 10241428 73684 10167744


こんな感じ。

なお、CentOS3卒業→CentOS5入学式の日には「漢なら、一度はやろう # rm -rf / 」というタイトルで記事を投稿します。:-)

このエントリを読んだ人はこんなんも読んでいます

トラックバック(0)

トラックバックURL: http://blog.kenji00.com/MT/mt-tb.cgi/129

コメントする

過去のエントリ(一覧)

Powered by Movable Type 4.261
Creative Commons License
このブログはクリエイティブ・コモンズでライセンスされています。