ablog

不器用で落着きのない技術者のメモ

Apache

Apache のログにレスポンスタイムを記録する

Apache のログにリクエスト処理時間を記録したい場合、LogFormatで %D(マイクロ秒)、%T(秒)で指定する。 ログ出力 /var/log/httpd/access_log **.0.3.*** - - [29/Nov/2020:13:56:07 +0000] 260★マイクロ秒(%D) 0★秒(%T) "GET / HTTP/1.1" 403 3630 …

Apache 2.4 をインストールする

ダウンロードする Download - The Apache HTTP Server Project から httpd-2.4.2.tar.gz をダウンロードする。 Download - The Apache Portable Runtime Project から apr-1.4.6.tar.gz、apr-util-1.4.1.tar.gz をダウンロードする。 ダウンロードファイル一…

Apache 2.4 で confiugre 実行時に「configure: error: pcre-config for libpcre not found」と怒られる

現象 # /usr/local/src/httpd-2.4.2 # ./configure --prefix=/usr/local/apache2 ... configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/ 解決策 ダウンロードファイル一覧 - PCRE - OSDN から pc…

Apache 2.4 で configure 実行時に「configure: error: APR not found」と怒られる

現象 # cd /usr/local/src/httpd-2.4.2 # ./configure --prefix=/usr/local/apache2 checking for chosen layout... Apache checking for working mkdir -p... yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /b…

Apache 経由 Tomcat 行き応答なし

現象 ブラウザからWebアプリにアクセスしても応答がない。 /usr/local/tomcat/logs/catalina.out に以下のエラーメッセージが出力されている。 2010-08-27 10:25:56 (TP-Processor3) ... Exception in thread "TP-Processor23" java.lang.OutOfMemoryError: …

/usr/lib/libexpat.so: could not read symbols: File in wrong format

Apache をコンパイルしてると # cd /usr/local/src/apache-2.2.8-php4 # ./configure \ "--prefix=/usr/local/apache228-php4" \ "--enable-module=so" \ "--enable-module=rewrite" # make ... /usr/lib/libexpat.so: could not read symbols: File in wron…