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.
我想知道 Cron 的请求类型。像 CURL 一样,向服务器发送 HTTP 请求。那么什么类型的 Request Cron 发送到 SERVER?
有什么帮助吗?
cron不发送 TCP 种类的流量,它只是按预定义的时间间隔运行作业(没有什么能阻止运行的作业cron这样做,但这完全独立于cron自身)。
cron
cron它本身唯一的通信是,如果您启动诸如crontab编辑所使用的文件之类的东西cron- 它通常会进行更改,然后(SIGHUP从内存)向cron服务器发送一个信号,告诉它重新读取文件。您还可以通过不同的方法编辑文件,然后将该信号发送给cron使用,例如, thekill` 命令。
crontab
SIGHUP
, the