安装pgagent并配置job

环境:

Centos 7

postgresql:11.6


1.查找相关介质
yum search pgagent
[root@localhost yum.repos.d]# yum -y install pgagent_11.x86_64


2..在数据库上配置pgAgent
找到pgagent.sql和pgagent_upgrade.sql文件路径,并在需要job功能的数据库上执行
将会在数据库中创建一个pgagent模式,并创建相应的功能表和函数
[root@localhost pgagent_11-4.0.0]# su - postgres
psql -U postgres
postgres=# \i /usr/share/pgagent_11-4.0.0/pgagent.sql
postgres=# \q

或是使用简易安装模式
可使用简易安装模式:
[root@localhost pgagent_95-3.4.0]# psql -U postgres
psql (9.5.9)
Type "help" for help.
postgres=# CREATE EXTENSION pgagent;


3.启动pgAgent守护程序

注意这里指定的账号和数据库,创建job的时候必须用相应的账号登陆,同时在指定的数据库下创建job
pgagent_11 hostaddr=192.168.1.130 dbname=hxl user=uhxl password=uhxl

4.登陆pgadmin创建相应的job

 

 

 

 

 

 

 

同时这里也可以调用存储过程

posted @ 2020-01-16 11:39  slnngk  阅读(1345)  评论(0编辑  收藏  举报