博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu 14.04 定时任务
阅读量:4981 次
发布时间:2019-06-12

本文共 1376 字,大约阅读时间需要 4 分钟。

如何在Ubuntu上启动一个定时任务,使得可以定时删除机器上的日志

首先,

#查看cron状态
service cron status
 
如果提示没有安装
#安装cron服务
apt-get install cron
 
如果提示正在运行
#编辑当前用户的计划任务文件
crontab -e 
 
弹出编辑界面,如下文件,加入最后一行代码,意思是每两分钟向
/home/cron_test文件写入一次
Hello World
# Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line# indicating with different fields when the task will be run# and what command to run for the task# # To define the time you can provide concrete values for# minute (m), hour (h), day of month (dom), month (mon),# and day of week (dow) or use '*' in these fields (for 'any').# # Notice that tasks will be started based on the cron's system# daemon's notion of time and timezones.# # Output of the crontab jobs (including errors) is sent through# email to the user the crontab file belongs to (unless redirected).# # For example, you can run a backup of all your user accounts# at 5 a.m every week with:# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/# # For more information see the manual pages of crontab(5) and cron(8)# # m h dom mon dow command*/2 * * * * echo "Hello World" >> /home/cron_test

  

CTRL+x 退出,此时提示是否保存,输入yes,然后回车

#重载cron
sudo service cron reload
 
#显示当前用户的计划任务文件
crontab -l 
此时会弹出当前用户的计划任务的文件内容
 
#重启cron服务
sudo service cron restart
 
然后tail -f 
/home/cron_test,将会每两分钟显示一次
Hello World
 
结束~~

转载于:https://www.cnblogs.com/sea-stream/p/9780928.html

你可能感兴趣的文章
排序:冒泡排序
查看>>
Java中instanceof关键字的用法总结
查看>>
引用类型-Function类型
查看>>
(转)Android 仿订单出票效果 (附DEMO)
查看>>
数据库多张表导出到excel
查看>>
微信小程序去除button默认样式
查看>>
Where does Visual Studio look for C++ Header files?
查看>>
Java打包可执行jar包 包含外部文件
查看>>
Windows Phone开发(37):动画之ColorAnimation
查看>>
js中escape,encodeURI,encodeURIComponent 区别(转)
查看>>
sass学习笔记-安装
查看>>
Flask (二) cookie 与 session 模型
查看>>
修改添加网址的教程文件名
查看>>
[BZOJ 1017][JSOI2008]魔兽地图DotR(树形Dp)
查看>>
裁剪图片
查看>>
数据结构实习 problem L 由二叉树的中序层序重建二叉树
查看>>
VS中展开和折叠代码
查看>>
如何确定VS编译器版本
查看>>
设置PL/SQL 快捷键
查看>>
个人阅读作业7
查看>>