apache 限速模块安装
查看是否安装 apxs
[root@iZw6o2qw54iab0Z httpd]# whereis apxs
apxs: /usr/sbin/apxs /usr/share/man/man8/apxs.8.gz
以上表示已经安装
下方表示没有安装:
[root@iZw6o2qw54iab0Z httpd]# whereis apxs
apxs:
需要安装,安装方式:
yum install httpd-devel
安装后,获取模块文件、加压、编辑
wget http://legacy.ivn.cl/files/source/mod_bw-0.92.tgz
tar zxvf mod_bw-0.92.tgz
{apxs_path} -i -a -c mod_bw.c
apxs_path找不到,可统一
whereis apxs 查找
安装过后
vi httpd.conf
添加如下代码:
LoadModule bw_module modules/mod_bw.so
统一限制,每个客户端速度
BandwidthModule On
ForceBandWidthModule On
Bandwidth all 1000 # 1k/s
MinBandwidth all -1
内容源于网络,如有侵权或违规我们会尽快整改