免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3686 | 回复: 3
打印 上一主题 下一主题

求助:nginx 反向代理, worker进程挂起 、CPU负载达到100% [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-13 18:35 |只看该作者 |倒序浏览
本帖最后由 wlong2000joint 于 2011-11-13 18:51 编辑

如题截图如下:



问题|故障现象:
有2个nginx worker进程挂起,CPU负载达到100%,持续很长时间(已经好几天,如果不kill nginx进程,估计会一直持续下去,即使已经没有用户请求|访问)。
[root@host-22 ~]# ps aux|grep -e nginx -e CPU
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root       936  0.0  0.0  49360  7584 ?        Ss   Nov11   2:30 nginx: master process /usr/local/nginx/sbin/nginx
www       1130 99.9  0.0  55764 13472 ?        R    Nov11 2590:02 nginx: worker process      
www       1216 99.9  0.0  53668 11092 ?        R    Nov11 2585:57 nginx: worker process   
   
www      29538  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29539  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29540  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29541  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29542  0.0  0.0  50848  9024 ?        S    18:25   0:00 nginx: worker process      
www      29543  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29544  0.0  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
www      29545  0.3  0.0  50848  8832 ?        S    18:25   0:00 nginx: worker process      
root     29551  0.0  0.0  61168   812 pts/0    R+   18:25   0:00 grep -e nginx -e CPU
[root@host-22 ~]#curl http://127.0.0.1/server_status      
Active connections: 647
server accepts handled requests
2088654 2088654 2089763
Reading: 5 Writing: 637 Waiting: 5
上面这个Writing的数字,持续好几天了都不变,即使已经没有用户访问。另外试过strace -p 1130,没有任何输出,这些在截图上也有。

操作系统环境:
[root@host-22 ~]# lsb_release -a
LSB Version:    :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch
Distributor ID: CentOS
Description:    CentOS release 5.5 (Final)
Release:        5.5
Codename:       Final
[root@host-22 ~]#
[root@host-22 ~]#
[root@host-22 ~]# uname -a
Linux host-22 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:14 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
[root@host-22 ~]#
[root@host-22 ~]#

nginx 版本及编译参数:
[root@host-22 ~]# /usr/local/nginx/sbin/nginx  -V
nginx: nginx version: nginx/1.0.4
nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2-46)
nginx: TLS SNI support disabled
nginx: configure arguments: ####这一行有敏感字符,大家看图片吧####
[root@host-22 ~]#

nginx 反向代理配置:
worker_processes  8;

events {
    use epoll;
    worker_connections  5120;
}

http {
sendfile        on;
keepalive_timeout  15;
...

upstream 2012_servers {
                server 10.0.7.5:80  max_fails=2  fail_timeout=30s;
                server 10.0.7.6:80  max_fails=2  fail_timeout=30s;
                server 10.0.7.7:80 max_fails=2  fail_timeout=30s;
                server 10.0.7.8:80 max_fails=2  fail_timeout=30s;
        }


    server {
        listen       80;
        server_name  test.2012.com ;
        ...

        location / {
                include proxy.conf;
                proxy_pass    http://2012_servers;
        }
...

}
很合法的配置呀!真不明白怎么会有nginx worker进程hang住。。。。

论坛徽章:
0
2 [报告]
发表于 2011-11-14 00:59 |只看该作者
有点深奥啊

论坛徽章:
0
3 [报告]
发表于 2011-11-14 12:25 |只看该作者
问题就是nginx反向代理,有2个worker process 占用CPU 100%,这种状态持续很久,直到手工kill掉进程。

nginx error.log里没有什么有意义的信息,strace -p 1130 没有输出;

更换过nginx版本(1.0.4 1.0.6 1.0.9),试过epoll和select ,都是如此;

请问有什么建议和思路,谢谢了!

论坛徽章:
0
4 [报告]
发表于 2011-11-16 10:02 |只看该作者
找到原因了:
http://forum.nginx.org/read.php?2,218259   官方论坛帖 (结论)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP