一、简介 当我们需要oracle数据库定时自动执行一些脚本,或进行数据库备份、数据库的性能优化,包括重建索引等工作是需要使用到定时任务。 定时任务可以使用以下两种完成。 1、操作系统级的定时任务,win的定时任务,unix的crontab 2、数据库级的定时任务。 相对来...
分类:
数据库 时间:
2014-10-15 00:04:49
阅读次数:
302
一、Crontab -e 加入输出Log*/1 * * * * /qiwen_list/upload_to_hdfs.sh > /qiwen_list/mapred.log 2>&1二、查看Log发现,找不到Hadoop三、脚本中指定Hadoop完整路径#!/bin/sh#upload list t...
分类:
Web程序 时间:
2014-10-13 22:51:47
阅读次数:
659
大部分人使用的可能都是github.com/robfig/写的cron模块,但是这个模块里只有动态添加任务,却没有动态删除任务的func,所以经过一番查找,发现了一个比较好的cron模块:https://github.com/jakecoffman/cron这个模块虽然fork的人比较少但是个人认为还是不错的,他基本是robfig..
分类:
编程语言 时间:
2014-10-11 15:32:16
阅读次数:
4134
ignore_user_abort();函数搭配set_time_limit(0);和sleep($interval);即可实现php定时计划任务先给出一个基本的范式,其中有个人的测试程序:<?phpignore_user_abort();//runscriptinbackgroundset_time_limit(0);//runscriptforever$interval=30;//doevery15minutes...do{$..
分类:
Web程序 时间:
2014-10-10 21:34:15
阅读次数:
209
最近在尝试一个自动打卡的脚本,发现了几个问题,特此记录一下。环境:Ubuntu 12.04.4 LTSselenium 2.43.0firefox 32.0.31 本来机器上selenium,firefox都是装过的,但是firefox时不时的就更新一下,所以selenium可能不支持当前的fire...
分类:
编程语言 时间:
2014-10-10 20:16:14
阅读次数:
200
创建定时任务: 1 root@xxj-VirtualBox:~# crontab -l 2 # Edit this file to introduce tasks to be run by cron. 3 # 4 # Each task to run has to be defined throu....
分类:
其他好文 时间:
2014-10-10 02:26:23
阅读次数:
174
安装crontab服务1,yum install -y vixie-cron2,crontab文件所在位置【centos】/var/spool/cron3,crontab配置文件vim /etc/crontab4,查看crontabcrontab -l5,编辑crontabcrontab -e6,删...
分类:
其他好文 时间:
2014-10-09 22:40:57
阅读次数:
260
首先修改ssh端口。创建脚本pb_ssh.sh#!/bin/bash#crontab每隔1分钟执行一次#*/1****/root/pb_ssh.sh#获取前1分钟内的secure记录,统计ssh认证失败的IP和其失败次数SCANNER=`grep"$(date-d-1min|awk‘{printsubstr($0,10,7)}‘)"/var/log/secure|awk‘/Failed/{print$(NF-3)}‘|awk-..
分类:
系统相关 时间:
2014-10-09 20:47:28
阅读次数:
187
#crontab-e在第一行加上MAILTO=""这样就不发送邮件啦
分类:
其他好文 时间:
2014-10-09 19:44:18
阅读次数:
223