CentOS 8 負荷テストツール「Wrk」をインストールする
環境
OSバージョンを確認します
# cat /etc/redhat-release
CentOS Stream release 8
操作方法
1.gitをインストールします
# sudo dnf install git
2.必要なパッケージをインストールします
# sudo dnf groupinstall 'Development Tools' # sudo dnf install openssl-devel
3.Wrkをダウンロードします
# git clone https://github.com/wg/wrk.git
wrkディレクトリに移動します
# cd wrk
ファイルをビルドします
# make
/usr/local/bin/にコピーします
# sudo cp wrk /usr/local/bin/
4.バージョンを確認します
# wrk --version wrk 4.2.0 [epoll] Copyright (C) 2012 Will Glozer Usage: wrk <options> <url> Options: -c, --connections <N> Connections to keep open -d, --duration <T> Duration of test -t, --threads <N> Number of threads to use -s, --script <S> Load Lua script file -H, --header <H> Add header to request --latency Print latency statistics --timeout <T> Socket/request timeout -v, --version Print version details Numeric arguments may include a SI unit (1k, 1M, 1G) Time arguments may include a time unit (2s, 2m, 2h)