Postgresql 使用 Pl/python实现邮件监控

前端之家收集整理的这篇文章主要介绍了Postgresql 使用 Pl/python实现邮件监控前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

目的:本项功能的目的是为了将数据库中某项内容监控的结果邮件出来提示给相关人员。

实现方式:数据库监控结果存储到监控记录表当中,使用PL/python函数将记录表中的数据传入附件并将附件使用MUTT邮件发送给相关人员进行通知

环境准备:

Linux: Release: 5.8 版本

Postgreqsl9.5.1 版本

Python版本:2.7.12

Mutt 版本号:1.4.2.2i

一、安装postgresql

安装过程(略)

下载地址:https://www.postgresql.org/download/

注意:在编译./configure的时候记得加上 --with-python 这样在拓展python的时候 直接拓展就OK

二、安装python 2.7.12

在官网上下载了python2.7.12

地址:https://www.python.org/getit/

将安装包上传到服务器中并解压 解压后会生成目录Python-2.7.12

进入目录编译安装

#./comfigure --prefix=/opt/python2.7.12 --enable-shared #注意这个参数一定要带

#make

#make install

---完成。

三、安装MUTT邮件发送工具

这里解释下为什么选择MUTT而不是linuxmail或者xmail---因为在刚开始使用xmailfoxmail发送附件的时候 foxmail中接收不到附件 并且正文内容乱码,所以选用了更为简便的mutt 来进行发送邮件

下载地址:http://www.mutt.org/download.html

安装mutt

#yum -y install mutt

四、postgresql端用创建pl/python拓展

#su - postgres

#psql

#create extension plpythonu;

五、编写调用操作系统mutt邮件命令的函数

5.1首先是将监控记录表中信息通过copy命令传入到文件send_mail_info 表为监控记录表,自行创建即可。

CREATE OR REPLACE FUNCTION public.fc_copy_date(v text)

RETURNS text AS

$BODY$

try:

plpy.execute("copy send_mail_info to '/app/pgdata/pg951date/view_test.xls'")

plpy.execute("select fc_file_icon('%s')" % v)

except plpy.SPIError:

return "something went wrong"

else:

return "ok"

LANGUAGE plpythonu VOLATILE

COST 100;

ALTER FUNCTION public.fc_copy_date(text)

OWNER TO postgres;

5.2其中fc_file_icon函数是用来转换文件编码的,因为从数据库copy出来的文件utf-8邮件出来后是乱码,所以转换成了gb2312的格式。

CREATE OR REPLACE FUNCTION public.fc_file_icon(v text)

import commands

strs = args[0] #接收函数传入命令

cmds ='iconv -f utf-8 -t gb2312 view_test.xls > %s' % v

(status,output) = commands.getstatusoutput(cmds)

return output

ALTER FUNCTION public.fc_file_icon(text)

OWNER TO postgres;

5.3这是由postgresql调用操作系统命令mutt的一个函数

CREATE OR REPLACE FUNCTION public.fc_send_mail(text)

emadr ='xxxxx@xxx.com '

cmd1 = 'echo "正文:xxxxx" | mutt -a ' + strs -----strs为传入的文件

emailx = ' -s "主题xxx" '+ emadr

cmds = cmd1 + emailx

ALTER FUNCTION public.fc_send_mail(text)

5.4最后一个外层的函数调用这两个函数

-- Function: public.fc_sendmail_main(text)

-- DROP FUNCTION public.fc_sendmail_main(text);

CREATE OR REPLACE FUNCTION public.fc_sendmail_main(v text)

RETURNS text AS

$BODY$

try:

plpy.execute("select fc_copy_date('%s')" % v)

plpy.execute("select fc_send_mail('%s')" % v)

except plpy.SPIError:

return "something went wrong"

else:

return "OK"

$BODY$

LANGUAGE plpythonu VOLATILE

COST 100;

ALTER FUNCTION public.fc_sendmail_main(text)

OWNER TO postgres;

5.5当需要发邮件的时候只需要执行这条命令即可

Select fc_sendmail_main(‘xxxx.sss’) ----- xxxx.sss代表 文件.文件类型

六、如若需要定时发送的话 可以使用postgresql的定时任务工具:pgAgent

Pgagent的安装及使用(略):可参考 我的上一篇文章Pgagent的安装及使用

原文链接:https://www.f2er.com/postgresql/194394.html

猜你在找的Postgre SQL相关文章