Luanchd无法启动Mopidy和UDP侦听器

时间:2019-05-28 17:15:15

标签: bash udp launchd mopidy

我试图编写一个Launchd脚本来执行一个简单的sh脚本,该脚本将1)启动mopidy 2)mkfifo /tmp/mopidy.fifo 3)使用socat将端口5555的数据传递到此文件中。

我已经尝试设置一个mopidy.plist LaunchAgent来在登录时执行一个mopidy.sh脚本文件。我已经验证了LaunchAgent可以正确启动,并且该脚本具有执行权限。我还通过将脚本作为单行代码传递到/ bin / bash来尝试使用Program Arguments方法,但是当我尝试将其记录为错误时,它指出无法找到socat,因此我尝试记录该错误。

mopidy.sh

[ec2-user@ip-xxx-xxx-xx-xx html]$ sudo php composer.phar require phpseclib/phpseclib:~2.0
Do not run Composer as root/super user! See https://getcomposer.org/root for details
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)

mopidy.plist

nohup mopidy;
mkfifo /tmp/mopidy.fifo;
while :; do 
    socat -d -d -T 1 -u UDP4-LISTEN:5555 OPEN:/tmp/mopidy.fifo; 
done

我能够正常执行bash脚本,而不会从命令行出现错误,但是由于/tmp/modipy.fifo文件从未创建且监听器也从未创建,因此该服务似乎无法执行。日志文件和error_logfile也不会填充。

1 个答案:

答案 0 :(得分:0)

我能够通过包含环境变量来使其工作。我对此并不完全了解,但是现在所有内容都可以使用以下代码:

<!-- Starts mopidy server -->
<?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.me.mopidy.plist</string>
    <key>EnvironmentVariables</key>
    <dict>
        <key>PATH</key>
        <string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin</string>
    </dict>
    <key>ProgramArguments</key>
    <array>
        <string>/bin/bash</string>
        <string>/Users/me/.config/scripts/mopidy.sh</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <true/>
    <key>StandardOutPath</key>
    <string>/Users/me/logfile.log</string>
    <key>StandardErrorPath</key>
    <string>/Users/me/error_logfile.log</string>
</dict>
</plist>