免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2674 | 回复: 4
打印 上一主题 下一主题

[问题已解决]Linux 下计划任务检查mysql表中的某个时间并发送邮件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-20 10:23 |只看该作者 |倒序浏览
我想实现这样的功能,通过linux的计划任务来取得mysql某个表中的到期日期endtime,email字段(循环取),把日期和系统日期比对是否过期,验证完以后发送邮件到指定的email中。用shell发送email已经测试好了,但是不知道怎么来取mysql表中的日期比较。如果shell做起来太麻烦,我还有一种思路就是:用shell来直接打开某个http://.....php页面来完成验证和发邮件的功能,最后这个web页面自动关闭,不知道这个思路是否可行,大家觉得哪种更可行,有没有相关的参考方法。


再次感谢 zjdick  相助!~

[ 本帖最后由 zhengdl126 于 2009-6-22 13:23 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-06-20 11:19 |只看该作者
  1. sqlplus -s user/pass@sid <<EOF
  2. select endtime,emal from table;
  3. EOF>>tmp.file

  4. while read time email
  5. do
  6.    NTime=`date +%Y%m%d%H%M%S`
  7.    if [ $time -gt $Ntime ];then
  8.        echo "message"|mail -s "subject" $email
  9.    fi
  10. done<tmp.file
复制代码

oracle 用sqlplus连接数据库,mysql我不知道,大体也一样吧

论坛徽章:
0
3 [报告]
发表于 2009-06-20 14:51 |只看该作者
原帖由 zjdick 于 2009-6-20 11:19 发表
sqlplus -s user/pass@sid tmp.file

while read time email
do
   NTime=`date +%Y%m%d%H%M%S`
   if [ $time -gt $Ntime ];then
       echo "message"|mail -s "subject" $email
   fi
done




mysql -u *** -p*** <<EOF  >***/tmp.file
use test;
select endtime,email from ctest;
EOF

while read time email
do
NTime=`date +%Y-%m-%d`
if [ $NTime -gt $time ];then
mail ***@***.com -s "过期" < ***/*.html
else
mail ***@***.com -s "正常" < ***/*.html
fi
done<***/tmp.file


有几点疑问:
1 %Y-%m-%d 这样的日期格式可以直接比较大小吗?
2
tmp.file 的内容为:
endtime email
2009-06-17      zheng_dongliang@mtcera.com

只有一条记录,却发了两封邮件?

论坛徽章:
0
4 [报告]
发表于 2009-06-20 16:41 |只看该作者
mysql挺好用

论坛徽章:
0
5 [报告]
发表于 2009-06-22 10:40 |只看该作者
最终代码:


mysql -u *** -p*** <<EOF  >***/tmp.file
use test;
select endtime,email from ctest;
EOF

while read endtime email
do
a="@"
if [[ "${email/$a/}" != "$email" ]];then

if [ $((($(date +%s)-$(date +%s -d"$endtime"))/86400)) -gt 0 ] ;then
mail $email -s "guoqi" < ***/channel.html
else
mail $email -s "ok" < ***/channel.html
fi

fi
done<***/tmp.file
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP