You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
ouqiang ea413530af
修改截图路径
8 years ago
cmd 系统安装后,才初始化资源 8 years ago
data SSH密码、密钥从文件中读取 8 years ago
log
models 日志记录-增加调用者名称、行数记录 8 years ago
modules 日志记录-增加调用者名称、行数记录 8 years ago
public 增加邮件通知 8 years ago
routers SSH密码、密钥从文件中读取 8 years ago
service 修复设置SSH超时无效 8 years ago
templates SSH密码、密钥从文件中读取 8 years ago
vendor 增加邮件通知 8 years ago
.gitignore 忽略data/ssh目录 8 years ago
.travis.yml 应用退出时,清空定时任务 8 years ago
README.md 修改截图路径 8 years ago
build.sh 系统安装后,才初始化资源 8 years ago
gocron.go 包重命名为gocron 8 years ago
screenshot_slack.png 修改图片链接 8 years ago
screenshot_task.png 修改图片链接 8 years ago

README.md

Build Status

gocron - 定时任务web管理系统

功能特性

  • 定时任务统一调度和管理
  • 支持任务CURD
  • crontab时间表达式支持秒级任务定义
  • 任务执行失败重试设置
  • 任务超时设置
  • 任务执行方式
    • 调用本机系统命令
    • 通过SSH执行远程命令
    • 执行HTTP-GET请求
  • 查看任务执行日志
  • 任务执行结果通知, 支持邮件、Slack

截图

任务 Slack

支持平台

Windows、Linux、OSX

环境要求

MySQL

安装

二进制安装

  1. 解压压缩包
  2. cd 解压目录
  3. 启动
    • Windows: gocron.exe web
    • Linux、OSX: ./gocron web
  4. 浏览器访问 http://localhost:5920

源码安装

go get https://github.com/ouqiang/gocron

启动可选参数

  • -p 端口, 指定端口, 默认5920
  • -e 指定运行环境, dev|test|prod, dev模式下可查看更多日志信息, 默认prod
  • -h 查看帮助

安全

  • 使用https访问保证数据传输安全, 可在web服务器如nginx中配置https通过反向代理访问内部的gocron
  • 网站访问设置IP白名单
  • SSH登录设置IP白名单