设为首页 收藏本站
查看: 799|回复: 0

[经验分享] PHP failed to ptrace(PEEKDATA) pid 1918: Input/output error (5)或者 increa...

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2016-9-21 09:18:35 | 显示全部楼层 |阅读模式
                         PHP failed to ptrace(PEEKDATA) pid 1918: Input/output error (5)或者 increase pm.start_servers解决
今天网站出现负载很大,cpu占用率超高,网站延迟很大,前台出现此错误信息:
1
2
3
4
5
6
7
8
9
10
[19-Sep-2016 23:30:38] WARNING: [pool www] child 31954, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.407095 sec), logging
[19-Sep-2016 23:30:38] WARNING: [pool www] child 31943, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.062648 sec), logging
[19-Sep-2016 23:30:38] WARNING: [pool www] child 31941, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.666022 sec), logging
[19-Sep-2016 23:30:38] WARNING: [pool www] child 30382, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.021010 sec), logging
[19-Sep-2016 23:30:38] WARNING: [pool www] child 29797, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.554333 sec), logging
[19-Sep-2016 23:39:27] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 2 idle, and 68 total children
[19-Sep-2016 23:40:58] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 8 children, there are 0 idle, and 81 total children
[19-Sep-2016 23:40:59] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 16 children, there are 3 idle, and 86 total children
[19-Sep-2016 23:41:00] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 32 children, there are 2 idle, and 88 total children
[19-Sep-2016 23:41:01] WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning 32 children, there are 0 idle, and 91 total children



从信息看,应该是php进程较少:
经过查看发现进程确实很少,解决如下:
修改配置文件增加进程
1
2
3
4
5
6
vim /usr/local/php/etc/php-fpm.ini
pm = dynamic  #动态模式
pm.max_children = 512  #静态开启的进程数
pm.start_servers = 128 #动态模式的起始进程数
pm.min_spare_servers = 128 #动态模式最小进程数
pm.max_spare_servers = 512 #动态模式最大进程数




数值设置,参考自己的实际硬件配置,可以参考 内存/20M 来计算。
重新加载进程
1
/etc/init.d/php-fpm reload



等待了一点时间发现又报错:
1
2
3
4
[19-Sep-2016 23:30:20] WARNING: [pool www] child 7782, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.224150 sec), logging
[19-Sep-2016 23:30:08] ERROR: failed to ptrace(PEEKDATA) pid 7663: Input/output error (5)
[19-Sep-2016 23:30:20] WARNING: [pool www] child 31952, script '/var/www/html/casino.21pink.com/public/index.php' (request: "POST /index.php") executing too slow (2.045803 sec), logging
[19-Sep-2016 23:30:20] ERROR: failed to ptrace(PEEKDATA) pid 31952: Input/output error (5)



查找资料如下:
It usrears you have request_slowlog_timeout enabled. This normally takes any request longer than N seconds, logs that it was taking a long time, then logs a stack trace of the script so you can see what it was doing that was taking so long.

In your case, the stack trace (to determine what the script is doing) is failing. If you're running out of processes, it is because either:

After php-fpm stops the process to trace it, the process fails to resume because of the error tracing it
The process is resuming but continues to run forever.
My first guess would be to disable request_slowlog_timeout. Since it's not working right, it may be doing more harm than good. If this doesn't fix the issue of running out of processes, then set the php.ini max_execution_time to something that will kill the script for sure.
大概说是设置了slowlog和php的最大执行时间。
解决:
禁止slowlog
1
2
3
vim php-fpm.conf
;request_slowlog_timeout = 10s
;slowlog = /usr/local/log/php-fpm/ckl-slow.log




修改最大执行时间:
1
2
vim php.ini
max_execution_time = 60




重启进程:
1
/etc/init.d/php-fpm reload



等待一段时间,发现一切正常。
查看TCP连接相关:
1
2
3
4
5
6
7
8
9
10
[iyunv@GreenZonewebapp2 php-fpm.d]# ss -s
Total: 323 (kernel 675)
TCP:   4538 (estab 12, closed 4518, orphaned 0, synrecv 0, timewait 4518/0), ports 0
Transport Total     IP        IPv6
*      675       -         -        
RAW      0         0         0        
UDP      5         4         1        
TCP      20        19        1        
INET      25        23        2        
FRAG      0         0         0



同时发现系统TIMEWAIT 较多,所以优化了一些内核相关参数  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#vim /etc/sysctl.conf   进行内核的相关优化
# sysct -p
bash: sysct: command not found
[iyunv@sapi etc]# sysctl -p
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.accept_source_route = 0
net.ipv4.tcp_max_tw_buckets = 6000
net.ipv4.ip_local_port_range = 1024 65000
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_max_orphans = 262144
net.ipv4.tcp_keepalive_time = 1200
net.ipv4.tcp_keepalive_intvl = 30
net.ipv4.tcp_keepalive_probes = 3
net.ipv4.tcp_synack_retries = 1
net.ipv4.tcp_syn_retries = 2
net.ipv4.tcp_max_orphans = 262144
net.ipv4.tcp_max_syn_backlog = 262144
net.ipv4.tcp_timestamps = 0
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 4096 87380 4194304
net.ipv4.tcp_wmem = 4096 16384 4194304
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.core.somaxconn = 262144
kernel.sysrq = 0
kernel.core_uses_pid = 1
kernel.msgmnb = 65536
kernel.msgmax = 65536
kernel.shmmax = 68719476736
kernel.shmall = 4294967296
vm.swappiness = 0
fs.file-max = 409600




  过一阵再查看:
1
2
3
4
5
6
7
8
9
10
11
# ss -s
Total: 281 (kernel 362)
TCP:   520 (estab 22, closed 493, orphaned 0, synrecv 0, timewait 493/0), ports 475
  
Transport Total     IP        IPv6
*         362       -         -        
RAW       0         0         0        
UDP       1         1         0        
TCP       27        27        0        
INET      28        28        0        
FRAG      0         0         0




运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-275266-1-1.html 上篇帖子: php源码安装、简单配置、测试及连接数据库 下篇帖子: PHP中面向对象的图片处理类
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表