services
이었다 브루에서 "숨겨진"명령. brew help
결과물에없는 많은 것들이있었습니다. 문서화되지 않은 명령은 수행하지 않을것이기 때문에공식 저장소에서 사라지고 다른 애드온 저장소에서 유지되는 " 외부 명령 "이되었습니다 (이 경우에는 간단합니다).
다음을 실행하여 Homebrew 설정에 설치할 수 있습니다.
> curl -o /usr/local/bin/brew-services.rb https://gist.githubusercontent.com/lwe/766293/raw/75a7907004bbff0eb3b072d1d951be2cfe7e5020/brew-services.rb
> chmod +x /usr/local/bin/brew-services.rb
> brew services help
usage: [sudo] brew services [--help] <command> [<formula>]
Small wrapper around `launchctl` for supported formulas, commands available:
cleanup Get rid of stale services and unused plists
list List all services managed by `brew services`
restart Gracefully restart selected service
start Start selected service
stop Stop selected service
Options, sudo and paths:
sudo When run as root, operates on /Library/LaunchDaemons (run at boot!)
Run at boot: /Library/LaunchDaemons
Run at login: /Users/ian/Library/LaunchAgents
또는 services
plist 파일을 건너 뛰고 그냥 만들 수 있습니다 . 예를 들어 다음을 사용 ~/Library/LaunchAgents/org.mongodb.mongod.plist
하여 작성하십시오 .
<?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>org.mongodb.mongod</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/Cellar/mongodb/2.6.4/bin/mongod</string>
<string>run</string>
<string>--config</string>
<string>/usr/local/Cellar/mongodb/2.6.4/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>UserName</key>
<string>{your_username}</string>
<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>
</dict>
</plist>
{your_username}
실제 사용자 이름으로 변경 한 후 다음을 실행하십시오.
launchctl load ~/Library/LaunchAgents/org.mongodb.mongod.plist
plist를 launchd로 등록합니다. 이제 다음을 사용하여 MongoDB를 시작하고 중지 할 수 있습니다.
launchctl start org.mongodb.mongod
launchctl stop org.mongodb.mongod
위의 plist 솔루션은 이 탁월한 스택 오버 플로우 응답 에서 가져 왔습니다 .