具有 Ubuntu 初始化脚本的独角兽服务器
unicorn server with Ubuntu init script
我根据这个 digitalocean tutorial.
为独角兽创建了这个 init.d
脚本
#!/bin/sh
### BEGIN INIT INFO
# Provides: unicorn
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the unicorn app server
# Description: starts unicorn using start-stop-daemon
### END INIT INFO
set -e
USAGE="Usage: [=11=] <start|stop|restart|upgrade|rotate|force-stop>"
# app settings
USER="deploy"
APP_NAME="appname"
APP_ROOT="/home/$USER/$APP_NAME"
ENV="production"
# environment settings
PATH="/home/$USER/.rbenv/shims:/home/$USER/.rbenv/bin:$PATH"
CMD="cd $APP_ROOT && bundle exec unicorn -c config/unicorn.rb -E $ENV -D"
PID="$APP_ROOT/shared/pids/unicorn.pid"
OLD_PID="$PID.oldbin"
# make sure the app exists
cd $APP_ROOT || exit 1
sig () {
test -s "$PID" && kill - `cat $PID`
}
oldsig () {
test -s $OLD_PID && kill - `cat $OLD_PID`
}
case in
start)
sig 0 && echo >&2 "Already running" && exit 0
echo "Starting $APP_NAME"
su - $USER -c "$CMD"
;;
stop)
echo "Stopping $APP_NAME"
sig QUIT && exit 0
echo >&2 "Not running"
;;
force-stop)
echo "Force stopping $APP_NAME"
sig TERM && exit 0
echo >&2 "Not running"
;;
restart|reload|upgrade)
sig USR2 && echo "reloaded $APP_NAME" && exit 0
echo >&2 "Couldn't reload, starting '$CMD' instead"
$CMD
;;
rotate)
sig USR1 && echo rotated logs OK && exit 0
echo >&2 "Couldn't rotate logs" && exit 1
;;
*)
echo >&2 $USAGE
exit 1
;;
esac
现在(脚本的名字是uicorn_app
)
sudo update-rc.d `unicorn_app` defaults
有效。但每当我尝试
$ sudo service unicorn_app start
Starting app
-su bundle: command not found
不过我可以通过
来阻止它
$ sudo service unicorn_app stop
在我用
手动启动之后
RAILS_ENV=production rails s -b ip.ip.ip.ip
我通过 rbenv 和 PATH
在 /etc/local
上安装了 ruby on rails
第一个条目重定向到正确的目录:
/usr/local/rbenv/shims
/usr/lcoal/rbenv/bin
我需要更改什么才能让我的脚本找到捆绑包?因为我认为 PATH 是正确的,还有什么可能出错?在此先感谢您的帮助!
好的,解决方案是安装 rbenv。我需要将行 PATH
和 RBENV_ROOT
添加到我的 ~/.bash_profile。将它们添加到那里后,我可以通过 sudo service unicorn_app start
启动独角兽
我根据这个 digitalocean tutorial.
为独角兽创建了这个init.d
脚本
#!/bin/sh
### BEGIN INIT INFO
# Provides: unicorn
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the unicorn app server
# Description: starts unicorn using start-stop-daemon
### END INIT INFO
set -e
USAGE="Usage: [=11=] <start|stop|restart|upgrade|rotate|force-stop>"
# app settings
USER="deploy"
APP_NAME="appname"
APP_ROOT="/home/$USER/$APP_NAME"
ENV="production"
# environment settings
PATH="/home/$USER/.rbenv/shims:/home/$USER/.rbenv/bin:$PATH"
CMD="cd $APP_ROOT && bundle exec unicorn -c config/unicorn.rb -E $ENV -D"
PID="$APP_ROOT/shared/pids/unicorn.pid"
OLD_PID="$PID.oldbin"
# make sure the app exists
cd $APP_ROOT || exit 1
sig () {
test -s "$PID" && kill - `cat $PID`
}
oldsig () {
test -s $OLD_PID && kill - `cat $OLD_PID`
}
case in
start)
sig 0 && echo >&2 "Already running" && exit 0
echo "Starting $APP_NAME"
su - $USER -c "$CMD"
;;
stop)
echo "Stopping $APP_NAME"
sig QUIT && exit 0
echo >&2 "Not running"
;;
force-stop)
echo "Force stopping $APP_NAME"
sig TERM && exit 0
echo >&2 "Not running"
;;
restart|reload|upgrade)
sig USR2 && echo "reloaded $APP_NAME" && exit 0
echo >&2 "Couldn't reload, starting '$CMD' instead"
$CMD
;;
rotate)
sig USR1 && echo rotated logs OK && exit 0
echo >&2 "Couldn't rotate logs" && exit 1
;;
*)
echo >&2 $USAGE
exit 1
;;
esac
现在(脚本的名字是uicorn_app
)
sudo update-rc.d `unicorn_app` defaults
有效。但每当我尝试
$ sudo service unicorn_app start
Starting app
-su bundle: command not found
不过我可以通过
来阻止它$ sudo service unicorn_app stop
在我用
手动启动之后RAILS_ENV=production rails s -b ip.ip.ip.ip
我通过 rbenv 和 PATH
在 /etc/local
上安装了 ruby on rails
第一个条目重定向到正确的目录:
/usr/local/rbenv/shims
/usr/lcoal/rbenv/bin
我需要更改什么才能让我的脚本找到捆绑包?因为我认为 PATH 是正确的,还有什么可能出错?在此先感谢您的帮助!
好的,解决方案是安装 rbenv。我需要将行 PATH
和 RBENV_ROOT
添加到我的 ~/.bash_profile。将它们添加到那里后,我可以通过 sudo service unicorn_app start