我在Ubuntu 16.04上安装了pgagent.
我执行了:
CREATE EXTENSION pgagent;
CREATE LANGUAGE plpgsql;
据此:https://www.pgadmin.org/docs/pgadmin4/1.x/pgagent_install.htm
我跑了
/usr/bin/pgagent hostaddr=127.0.0.1 user=my_user password=*****
并创造了我的工作:
但是,当我尝试执行时,没有任何反应.没有错误,消息,没有.并且不执行功能.
我不知道从哪里开始解决这个问题
最佳答案 我知道这是一个老线程,但为了帮助其他人解决这个问题,这里有一个建议:
我不确定pgAgent是否接受这样的密码,这意味着通过简单的ps aux命令可以看到密码.相反,您需要使用pgpass文件:
$sudo su - postgres
$cd ~
$nano .pgpass
# Insert the following text and save the document:
localhost:5432:*:postgres:[postgres_password]
$chmod 0600 .pgpass
$pgagent hostaddr=localhost dbname=postgres user=postgres