1.安装webbench
[root@xuegod73 ~]#wget https://blog.s135.com/soft/linux/webbench/webbench-1.5.tar.gz
[root@xuegod73 ~]#tar zxvf webbench-1.5.tar.gz
[root@xuegod73 ~]#cd webbench-1.5
[root@xuegod73 ~]#make && make install
[root@xuegod73 webbench-1.5]# ls
ChangeLog COPYRIGHT debian Makefile socket.c webbench.1 webbench.c
[root@xuegod73 webbench-1.5]# make
cc -Wall -ggdb -W -O -c -o webbench.o webbench.c
webbench.c: 在函数‘alarm_handler’中:
webbench.c:77:31: 警告:未使用的参数‘signal’ [-Wunused-parameter]
static void alarm_handler(int signal)
^
cc -Wall -ggdb -W -O -o webbench webbench.o
ctags *.c
[root@xuegod73 webbench-1.5]# yum install gcc ctags -y
[root@xuegod73 webbench-1.5]# make
make: 对“all”无需做任何事。
解决方法:如下操作
[root@xuegod73 webbench-1.5]# mkdir -p /usr/local/man/man1
[root@xuegod73 webbench-1.5]# make install
install -s webbench /usr/local/bin
install -m 644 webbench.1 /usr/local/man/man1
install -d /usr/local/share/doc/webbench
install -m 644 debian/copyright /usr/local/share/doc/webbench
install -m 644 debian/changelog /usr/local/share/doc/webbench
[root@xuegod73 webbench-1.5]# webbench -h
webbench [option]... URL
-f|--force Don't wait for reply from server.
-r|--reload Send reload request - Pragma: no-cache.
-t|--time <sec> Run benchmark for <sec> seconds. Default 30.
-p|--proxy <server:port> Use proxy server for request.
-c|--clients <n> Run <n> HTTP clients at once. Default one.
-9|--http09 Use HTTP/0.9 style requests.
-1|--http10 Use HTTP/1.0 protocol.
-2|--http11 Use HTTP/1.1 protocol.
--get Use GET request method.
--head Use HEAD request method.
--options Use OPTIONS request method.
--trace Use TRACE request method.
-?|-h|--help This information.
-V|--version Display program version.
[root@xuegod73 ~]#wget https://blog.s