php cli 在我的网络服务器中不起作用
我正在尝试使用命令行在我的网络服务器中运行 php 文件,
php test.php
但它不起作用。它永远运行并占用 100% 的资源。 昨天还可以用,现在就不行了。
我尝试使用调试过程
strace -p <pid>
并得到很多
times(NULL) = -2058427839
可以有人帮助我调试这个吗?重启和升级是我最后的手段。请建议一个无需重新启动或升级的解决方案。
I am trying to run a php file in my web server in command line using
php test.php
But it is not working. it runs forever and takes 100% resources.
It was working yesterday and now it is not working.
I tried to debug the process using
strace -p <pid>
and got lots of
times(NULL) = -2058427839
Can anyone help me to debug this? Rebooting and upgrading is my last resort. Please suggest a solution without reboot or upgrade.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用以下命令在没有配置文件的 cli 中运行 php 文件,
然后检查其是否正常工作?
Try to run your php file in cli without the configuration file using the following command:
and then check whether its working?
将其放入您的 test.php 文件中以检查它是否正常工作并查看可用的内容。
phpinfo();
Place this into your test.php file to check that it is working and to see what is available.
phpinfo();