Lighting@刘迎光
相信了,才有可能遇见,不相信,也许只会是擦肩而过!
Toggle navigation
Lighting@刘迎光
首页
IT技术
微服务(IT)
技术问答
OpenBI
读书笔记
公众号【今日脑图】
关于我
自媒体
归档
标签
alpine linux中如何使用crontab执行定时任务
alpine
linux
crontab
BusyBox
2017-04-01 17:21:10
1816
lightingfire
alpine
linux
crontab
BusyBox
首先alpine内嵌的是BusyBox,使用alpine的crontab实际就是使用BusyBox的crond服务,那么下来就简单介绍下如何使用吧,网上教程还是比较多的: # 配置文件存放位置: 配置文件是在如下目录中的 ``` /var/spool/cron/crontabs/root ``` # 使用方式 1. 向crontab的配置文件中添加配置 ``` vi /var/spool/cron/crontabs/root # 或者 crontab -e # 填入如下内容,最后一行为我添加的测试任务 # do daily/weekly/monthly maintenance # min hour day month weekday command */15 * * * * run-parts /etc/periodic/15min 0 * * * * run-parts /etc/periodic/hourly 0 2 * * * run-parts /etc/periodic/daily 0 3 * * 6 run-parts /etc/periodic/weekly 0 5 1 * * run-parts /etc/periodic/monthly * * * * * echo "test" >> /app/test.log ``` 2. 启动crond ``` crond ``` 3. 查看状态 ``` ps PID USER TIME COMMAND ····· 82 root 0:00 crond 292 root 0:00 ps ``` 4. 查看/app/test.log是否有输入内容 ``` cat test.log test test test test test ``` OK,至此对于crontab的设置就完成了,其实还是比较简单的 > by 刘迎光@萤火虫工作室 > OpenBI交流群:495266201 > MicroService 微服务交流群:217722918 > mail: liuyg#liuyingguang.cn > 博主首页(==防止爬虫==):http://blog.liuyingguang.cn
Pre:
微服务指南走北(四):你不愿意做微服务架构的十个理由
Next:
java web项目中集成Jetty作为web容器
Table of content