标签:http io os 使用 ar for 文件 sp art
调试网络的时候进行 HTTP模拟网速 快慢 使用apache 插件 Bandwidth Mod
1.安装mod_bw
下载http://bwmod.sourceforge.net/#
解压
进入目录执行
sudo apxs2 -i -a -c mod_bw.c
2.配置
在配置文件/etc/apache2/httpd.conf 加入如下
配置为低速模式 1KB/S
<location /modbw> SetHandler modbw-handler </location> <VirtualHost *:80> DocumentRoot /var/www/ ServerName 127.0.0.1 BandWidthModule On ForceBandWidthModule On Bandwidth all 1024 MinBandwidth all -1 </VirtualHost>
<location /modbw> SetHandler modbw-handler </location> <VirtualHost *:80> DocumentRoot /var/www/ ServerName 127.0.0.1 BandWidthModule On ForceBandWidthModule On Bandwidth all 1048576 MinBandwidth all -1 </VirtualHost>
sudo /etc/init.d/apache2 restart
reload 貌似不行,不知道为啥
apache config 1 Bandwidth Mod (apache speed control)
标签:http io os 使用 ar for 文件 sp art
原文地址:http://blog.csdn.net/green369258/article/details/39699059