在launchd中运行postgres查询

时间:2017-09-27 06:23:39

标签: macos postgresql psql launchd

我试图在OSX Sierra上定期运行postgres查询,我发现建议我应该使用launchd。我创建了一个plist文件,它调用一个包含postgres查询的简单shell脚本,将plist文件复制到LaunchAgents文件夹中,然后加载它。但是,它似乎没有起作用。

如果我运行的shell脚本很简单:

echo "Hello" > /Users/agentzel/Documents/temp.txt

它工作得很好 - 每30秒,它会用#34; Hello"这个词刷新该文件。但是,如果它是如下所示的postgres查询,我将无法获得任何输出。

psql -U agentzel -d dvdrental -c 'select count(*) from film;' > /Users/agentzel/Documents/temp.txt

当我从命令行运行它们时,这两个命令都运行正常,但是当由LaunchAgent调用时,postgres查询不起作用。我对于postgres或者launchd都没有太多的了解,所以我很欣赏任何关于我做错的事情。

如果相关,请点击我的启动文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.test.database_info_sample</string>
    <key>ProgramArguments</key>
    <array>
        <string>/Users/agentzel/Documents/test.sh</string>
    </array>
    <key>StartInterval</key>
    <integer>30</integer>
</dict>
</plist>

(其中test.sh只包含我试图运行的命令)

编辑:如果没有人熟悉这个特定问题,有没有简单的方法来调试launchd?如果launchd或postgres报告错误,是否有文件我可以检查错误消息/代码?

1 个答案:

答案 0 :(得分:1)

使用Launchd配置在shell脚本中设置STDOUT位置,而不是管道(&gt; ..txt)。

    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
        <dict>
        <key>Label</key>
       <string>com.test.database_info_sample</string>
       <key>ProgramArguments</key>
       <array>
         <string>/Users/agentzel/Documents/test.sh</string>
       </array>
       <key>StartInterval</key>
       <integer>30</integer>
       <key>StandardErrorPath</key>
       <string>/Users/agentzel/Documents/temp_err.txt</string>
       <key>StandardOutPath</key>
       <string>/Users/agentzel/Documents/temp.txt</string>
     </dict>
   </plist>