摘要:ApacheBeanch - post file - SSL read failed - closing connection 問題
使用Apache Beanch 使用post file的方式壓測時,
會產生
SSL read failed - closing connection
這個問題。
聽同事講,是舊版ApacheBeanch (2.2)的bug,要升級到最新版
安裝新版的步驟如下(記錄同事筆記)
先wget最新版
wget http://apache.stu.edu.tw//httpd/httpd-2.4.4.tar.gz
tar xvfz httpd-2.4.4.tar.gz
安裝
1) 到 http://httpd.apache.org 下載最新的 Apache 2.4.4 並解壓縮到 "apache/"
2) 到 http://apr.apache.org 下載 apr 1.4.8 和 apr-util 1.5.2 並解壓縮到 "apache/ srclib/apr" 和 "apache/srclib/apr-util"
3) 安裝 apache,到 "apache/" 執行:
#沒有make 下 sudo apt-get install make
./configure --prefix=/usr/local/apache2 --with-included-apr
make
sudo make install
4) 將 apache bin 加到 shell
vim ~/.bashrc
# 在 .bashrc 內加上
PATH=$PATH:/usr/local/apache2/bin
configure: error: pcre-config for libpcre not found.
sudo apt-get install libpcre3-dev
出現configure: error: in ... /srclib/apr:
安裝
sudo apt-get install build-essential