最近每天下午都會(huì)出現(xiàn)阻塞的情況,通過(guò)strace 看到里面頻繁出現(xiàn)
stat("/aaa/bbb/Applications/web/Protocols/Text.php", 0x7fff9942e9a0) = -1 ENOENT (No such file or directory)
16:57:36.134164 stat(/aaa/bbb/vendor/workerman/workerman/../Protocols/Text.php", 0x7fff9942e9a0) = -1 ENOENT (No such file or directory)
以及
access("/etc/pki/nssdb/cert9.db-journal", F_OK) = -1 ENOENT (No such file or directory)
這是什么情況呢? 阻塞是因?yàn)檫@個(gè)嗎?急急急
每天下午四點(diǎn)多都會(huì)出現(xiàn)阻塞連不上的情況
怎么會(huì)有Text.php這種文件調(diào)用呢?這不是我的代碼邏輯里面引用的文件啊
查了下 access("/etc/pki/nssdb/cert9.db-journal", F_OK) = -1 ENOENT (No such file or directory)這個(gè)好像是linux的curl報(bào)的錯(cuò),跟我們workerman好像沒(méi)有關(guān)系,但是上面的/Protocols/Text.php文件感覺(jué)有點(diǎn)莫名其妙的。。。
根據(jù)strace跟蹤系統(tǒng)調(diào)用,能看出找不到對(duì)應(yīng)路徑的文件: /aaa/bbb/Applications/web/Protocols/Text.php
你確定上述的Text.php文件物理存在? 確定代碼邏輯里沒(méi)有地方使用到Text協(xié)議?
我代碼邏輯里面沒(méi)有用過(guò)text.php,但確實(shí)是text.php協(xié)議,但文檔中并沒(méi)說(shuō)使用text協(xié)議需要添加代碼文件吧!也沒(méi)有這個(gè)目錄