我一直在尝试在MacOS Sierra上安装pow(用于Rails),但在提供root权限的密码后它会挂起。
$ curl get.pow.cx | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9039 100 9039 0 0 28008 0 --:--:-- --:--:-- --:--:-- 30029
*** Installing Pow 0.5.0...
*** Installing local configuration files...
/Users/robertolimon/Library/LaunchAgents/cx.pow.powd.plist
*** Installing system configuration files as root...
Password:
根据当前文档,在提供密码后应显示以下行:
/etc/resolver/dev
/Library/LaunchDaemons/cx.pow.firewall.plist
*** Starting the Pow server...
*** Performing self-test...
*** Installed
所以,我在等待超过35分钟后取消了它,我发现它没有创建Pow安装程序脚本中引用的文件/Library/LaunchDaemons/cx.pow.firewall.plist:
if [ $NEEDS_ROOT -eq 1 ]; then
echo "*** Installing system configuration files as root..."
sudo "$NODE_BIN" "$POW_BIN" --install-system
if [ "$MAC_OS_MINOR_VERSION" -ge 10 ]; then
sudo launchctl bootstrap system /Library/LaunchDaemons/cx.pow.firewall.plist 2>/dev/null
sudo launchctl enable system/cx.pow.firewall 2>/dev/null
sudo launchctl kickstart -k system/cx.pow.firewall 2>/dev/null
else
sudo launchctl load -Fw /Library/LaunchDaemons/cx.pow.firewall.plist 2>/dev/null
fi
fi
有什么想法解决这个问题吗? 我如何或在哪里获得此文件?
由于
12月30日&16; 20:32
仍在处理这个问题,我发现脚本卡在以下一行:
sudo "$NODE_BIN" "$POW_BIN" --install-system
在我第一次发表评论时提到的代码块之前。
这些变量的值是:
POW_ROOT="$HOME/Library/Application Support/Pow"
NODE_BIN="$POW_ROOT/Current/bin/node"
POW_BIN="$POW_ROOT/Current/bin/pow"
有什么想法解决这个问题?
由于
12月30日和16日23:58
我应用以下链接中描述的说明:
http://blog.radi.ws/post/123989557948/running-pow-050-on-os-x-el-capitan-1011-beta
但仍然无法正常工作。
2月20日' 18于09:40
我解决了在我的Mac上安装新的macOS Sierra的问题。
答案 0 :(得分:-1)
我遇到了同样的问题并通过启用root用户来修复它。