ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# Swoole-Crontab(基于Swoole扩展) ## [](https://github.com/osgochina/Donkey#1%E6%A6%82%E8%BF%B0)1.概述 * 基于swoole的定时器程序,支持秒级处理. * 异步多进程处理。 * 完全兼容crontab语法,且支持秒的配置,可使用数组规定好精确操作时间 * 单中心-多客户端模式,能够横向扩展 * web界面管理,增删改查任务,完整的权限控制. * 请使用swoole扩展1.8.0+ * [v0.8版本入口](https://github.com/osgochina/swoole-crontab/tree/v0.8) ## [](https://github.com/osgochina/Donkey#2%E6%9E%B6%E6%9E%84%E5%9B%BE)2.架构图 [![](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/x.png)](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/x.png) ## [](https://github.com/osgochina/Donkey#3crontab%E9%85%8D%E7%BD%AE)3.Crontab配置 介绍一下时间配置 ~~~ 0 1 2 3 4 5 | | | | | | | | | | | +------ day of week (0 - 6) (Sunday=0) | | | | +------ month (1 - 12) | | | +-------- day of month (1 - 31) | | +---------- hour (0 - 23) | +------------ min (0 - 59) +-------------- sec (0-59)[可省略,如果没有0位,则最小时间粒度是分钟] ~~~ ## [](https://github.com/osgochina/Donkey#4%E5%BC%80%E5%A7%8B%E4%BD%BF%E7%94%A8)4.开始使用 1.修改配置 1.1 中心服配置 ~~~ /path/to/src/center/configs/dev/db.php 修改数据库配置 进入mysql数据库执行/path/to/doc/crontab.sql 的sql文件 src/center/_init.php 修改 PUBLIC_PATH swoole framework框架所在的路径 ~~~ 1.2 admin管理后台的配置文件修改 ~~~ src/admin/configs/dev/db.php 修改数据库配置 src/admin/configs/dev/service.php 中心服启动时候监听的ip端口,需要跟中心服通讯 src/public/index.php 修改 WEBROOT 域名 修改 PUBLIC_PATH swoole framework框架所在的路径 ~~~ 2.下载swoole framework框架到本地/data/www/public/[framework](https://github.com/swoole/framework.git) 3.配置nginx,列子如下: ~~~ server { listen 80; server_name crontab.test.com; root /data/www/wwwroot/swoole-crontab/src/public; index index.php index.html; location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php; } } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } ~~~ 4.启动中心服 ~~~ /path/to/php /path/to/src/center/center.php start -d -h 127.0.0.1 -p 8901 ~~~ 5.启动客户端 ~~~ -h 是指中心服地址 -p 中心服端口 /path/to/php /path/to/src/agent/agent.php start -d -h 127.0.0.1 -p 8901 ~~~ 6.web界面访问 > 输入nginx配置的地址访问web界面,默认用户名/密码是admin/admin 7.操作步骤 ~~~ 请按照以上步骤操作,因为admin后台是通过接口连接上中心服来进行管理.所以必须先启动中心服,再打开admin管理后台 ~~~ ## [](https://github.com/osgochina/Donkey#4%E4%BD%BF%E7%94%A8%E4%BA%A4%E6%B5%81)4.使用交流 1.后台截图 [![](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/demo.png)](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/demo.png) 2.更加清晰的架构图.感谢@xufei100 [![](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/xufei100.png)](https://raw.githubusercontent.com/osgochina/swoole-crontab/master/doc/xufei100.png) QQ群:560807006 ## [](https://github.com/osgochina/Donkey#5todo)5.TODO * [ ] 去除nginx依赖 * [ ] 配置文件统一 * [ ] 去除swoole framework框架的依赖 * [ ] restful api接口 * [ ] 通过命令行管理任务 * [ ] 无中心服依赖