fix: 解决访问没有埋点的问题

This commit is contained in:
2025-11-10 17:28:52 +08:00
parent e440631275
commit 57dea2ca87
38 changed files with 4172 additions and 1624 deletions

View File

@@ -4,6 +4,22 @@
本项目使用的 是 `yunwuxin/think-cron` 包,该包提供了丰富的功能,包括任务调度、任务执行、任务状态管理等。该包支持多种任务类型,如固定任务、循环任务、一次性任务等,同时支持多种执行周期,如分钟、小时、天、周、月等。
## 手动启动计划任务
``` bash
############ 查看 cron 进程
## 查看 cron 进程
ps aux | grep "think cron:schedule"
# # 精确查找
pgrep -f "think cron:schedule"
# # 查看进程树
pstree -p | grep -i cron
## 启动 cron 任务
# 守护进程模式
nohup php think cron:schedule > /dev/null 2>&1 &
#######################################
```
## 计划任务管理