我只是尝试在OSX 10.10 Yosemite上安装gearman。安装看起来工作正常。
brew install gearman
但是当我尝试运行命令以启动作业服务器时gearmand -d
我只是-bash: gearmand: command not found
.
事实证明,自制软件将所有/usr/local/opt/gearman/bin
内容都放在您的 PATH 中(齿轮工和齿轮工管理员)。但它gearmand
/usr/local/opt/gearman/sbin
.自制软件完全错过了它。
我通过软链接到我的/usr/local/bin 解决了它。
ln -s /usr/local/opt/gearman/sbin/gearmand /usr/local/bin
繁荣。现在gearmand
在你的路径中。