Hadoop Day03

crontab配置

  • 可以在固定的间隔时间执行指定的系统指令或 shell script脚本
  • 安装crontaby
yum install crontabs
  • 启动服务
service crond start
  • 关闭服务
service crond stop 
  • 重启服务
service crond restart
  • 重新载入配置
service crond reload
  • 查看crontab服务状态
service crond status
  • 查看crontab服务是否已设置为开机启动,执行命令
chkconfig --list
  • 加入开机自动启动
chkconfig  --level 35 crond on
  • 修改任务计划的命令格式
crontab [-u user] file
crontab [-u user] [ -e | -l | -r ]
  • 命令示例:
crontab file [-u user]	## 用指定的文件替代目前的crontab
  • 列出用户目前的crontab
crontab -l [-u user]	
  • 编辑用户目前的crontab
crontab -e [-u user]
  • 删除定时任务
crontab -r
  • 基本格式 :
    *  *  *  *  *  command
    分  时  日  月  周  命令

你可能感兴趣的:(Hadoop Day03)