1.在xshell 中
crontab -e //编辑任务
crontab -l //查看执行中的任务列表
2.在打开的任务中:
/home/wwwroot/default 换为自己项目的根路径 vagrant/laizheer/
* * * * * /usr/bin/php /home/wwwroot/default/artisan schedule:run >> /dev/null 2>&1
3.启动服务
sudo service crond start
4.清除任务
crontab -r
补充:
protected function schedule(Schedule $schedule)
{
}