1. 程式人生 > >centos7安裝使用siege進行壓力測試

centos7安裝使用siege進行壓力測試

inter http 51cto log net 系統 blog 隨機 示例

  • 下載:
    wget  http://download.joedog.org/siege/siege-4.0.4.tar.gz
  • 安裝:
    tar  -xzf  siege-4.0.4.tar.gz
    cd  siege-4.0.4/
    ./configure
    make  &&  make  install
  • 用法:
    -c  200 指定並發數200
    -r  5 指定測試的次數5(默認:分鐘)+s指定秒數
    -f  url.txt 指定url的文件
    -i  internet系統,隨機發送url
    -b  請求無需等待 delay=0
    -t  5  持續測試5分鐘
    #  -r和-t一般不同時使用
  • 示例:
    a. GET請求:
    siege  -c  1000  -t  2s  http://dollarphp.com/

    技術分享圖片
    技術分享圖片
    b. POST請求:

    siege  -c  1000  -t  2s  "http://dollarphp.com/  POST  name=lee&sex=male"

    技術分享圖片
    技術分享圖片

  • centos7安裝使用siege進行壓力測試