在 Ubuntu 中使用 crontab 和 LAMPP
我已经用谷歌搜索了一段时间,但我仍然找不到如何使用 lampp 设置 crontab。
我需要每 15 分钟运行一次 PHP 脚本。
所以,在 bash 中:
$ sudo -i
# crontab -e
我得到了一个 nano 编辑器...我应该在里面输入什么?
我尝试了 * * * * */opt/lampp/path/to/script 但它不起作用。
谁能帮助我吗?
I googled for quite some time already, but I still can't find how to setup crontab with lampp.
I need to run a PHP script for every 15 minutes.
So, in bash:
$ sudo -i
# crontab -e
I get a nano editor... what should I type inside?
I tried * * * * */opt/lampp/path/to/script
but it's not working.
Can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 crontab 脚本是
也许原因是最后一个“*”和第一个“/”之间没有空格...
试试这个:
Your crontab script is
Maybe the reason is you don't have a space between the last '*' and the first '/'...
Try this:
您可能必须使用
php path/to/script
来运行 PHP 脚本:Ubuntu 可能不知道如何直接运行该脚本。您也必须安装 php-cli 才能正常工作。You may have to use
php path/to/script
to run the PHP script: Ubuntu may not know how to run the script directly. You do have to have php-cli installed for that to work, too.