Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 php 文件在我的服务器上频繁执行。我检查了 crontab 和 cronjobs,我找不到源。我可以从 php 文件中打印一些东西来识别调用进程吗?
也许它被另一个 crontab 作为一个curl或一个wget请求调用。是否还有其他正在使用的机器?
curl
wget
还要检查时间戳以确定它们是经常发生还是经常发生。如果它们不是在每次执行的(大致)相等的时间内发生,那么它可能根本不是 cron。如果它不是 cron,那么它是由于某些事件而发生的。然后您只需在您的 PHP 代码中查找该脚本的 url 以查看哪个页面调用它。