我有一个简单的脚本,可以启动一个独角兽实例(在 Ubuntu 12.04LTS 上)。
#!/bin/sh
case "$1" in
start)
echo "starting"
cd /path && bundle exec unicorn -c /path/config/unicorn.rb -D -E production
;;
stop)
echo "Stopping Unicorn Instances"
kill `cat /tmp/unicorn.pid`
;;
restart)
echo "sending USR2 to all unicorns"
kill -s USR2 `cat /tmp/unicorn.pid`
;;
esac
exit 0
调用时其行为正确:/etc/init.d/unicorn_boot.sh start
我希望它在启动时启动,所以我运行:
update-rc.d -f unicorn_boot.sh defaults
当我重新启动时出现以下错误:
/etc/rc2.d/S20unicorn_boot.sh: 10: /etc/rc2.d/S20unicorn_boot.sh: bundle: not found
我检查了bundle
命令,它安装在/usr/local/bin
,命令也是一样ruby
。
似乎在启动时PATH
尚未包含/usr/local/bin
。我该如何修复此问题?
答案1
启动脚本负责自己设置适当的路径。$PATH
在脚本顶部设置变量:
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin