服务器网络流量异常分析

By admin, 23 七月, 2015

服务器异常慢,先到服务提供商监控页面中看看流量使用情况,如果发现带宽用尽说明比较可疑。

登录服务器运行以下命令可以查看进程占用带宽情况:

nethogs eth1

这个命令也可以查看进程使用io的情况:

iotop

 定位到进程后,可以用下面命令查看进程在读取什么文件:

lsof -p <pid>

如果是nginx服务器,可以在配置参数中添加限速配置:

 

limit_rate_after 1m; # 下载1M后限速

limit_rate 128K; # 限每个连接的速度,和服务器带宽换算时要乘以8

 

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"