ノード サーバー用の launchd.plist ファイルを書き込もうとしています。ノードサーバーを実行するために永遠に使用しています。起動時にサーバーを起動したいと思います。また、mongodb launchd plist が最初に実行されるのを待ちたいと思います。
homebrew を使用して mongobb をインストールしましたが、既に launchd.plist が付属しています。私は以下を実行しました:
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
mongodb の plist は次のとおりです。
<!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>homebrew.mxcl.mongodb</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/opt/mongodb/mongod</string>
<string>run</string>
<string>--config</string>
<string>/usr/local/etc/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>WorkingDirectory</key>
<string>/usr/local</string>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/mongodb/output.log</string>
<key>StandardOutPath</key>
<string>/usr/local/var/log/mongodb/output.log</string>
<key>HardResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>1024</integer>
</dict>
<key>SoftResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>1024</integer>
</dict>
</dict>
</plist>
コンピューターをシャットダウンして再起動すると、mongodb が正常に起動します。
ただし、ノードサーバーが起動していません。何か案は?
<?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>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>Label</key>
<string>com.test.app</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/forever</string>
<string>-a</string>
<string>-l</string>
<string>/var/log/app/app.log</string>
<string>-e</string>
<string>/var/log/app/app_error.log</string>
<string>/data/server/app.js</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>3600</integer>
</dict>
</plist>
編集:
ログファイルに書き込むと、次のように表示されます。
env: node: そのようなファイルまたはディレクトリはありません
これは、ノード バイナリが見つからないことを意味していると思います。$PATH を echo でき、/usr/local/bin がパスにあります。ターミナルからノードを起動できます。アイデア?