gpt4 book ai didi

ruby-on-rails - Sidekiq 不会在 ec2 服务器重启时启动

转载 作者:可可西里 更新时间:2023-11-01 11:21:18 24 4
gpt4 key购买 nike

我已经使用 centos 在 ec2 rails 服务器上部署了我的网站。 ec2 服务器重启时如何运行 sidekiq?我关注了这个http://dxta.github.io/blog/2014/03/06/init-script-for-sidekiq-in-centos/我写了一个如下所示的 bash 脚本,但是 sidekiq 没有按预期重启

"#! /bin/bash
#
# sidekiq Init script for sidekiq
#
# chkconfig: 345 99 1
# description: Starts and stops sidekiq message processor

# Source function library.
# . /etc/rc.d/init.d/functions

# You will need to modify these
APP=""sps_qa""
AS_USER=""ec2-user""
APP_DIR=""/home/ec2-user/www/sps_qa/current""

APP_CONFIG=""/home/ec2-user/www/sps_qa/current/config""
LOG_FILE=""/home/ec2-user/www/sps_qa/current/log/sidekiq.log""
LOCK_FILE=""$APP_DIR/${APP}-lock""
PID_FILE=""$APP_DIR/${APP}.pid""
GEMFILE=""$APP_DIR/Gemfile""
SIDEKIQ=""sidekiq""
APP_ENV=""qa""
BUNDLE=""bundle""

# [ -e /etc/sysconfig/sidekiq-your_app ] && . /etc/sysconfig/sidekiq- your_app

START_CMD=""exec ~/.rvm/bin/rvm-shell -c '$BUNDLE exec $SIDEKIQ -q mailer -q default -e $APP_ENV -P $PID_FILE'""
CMD=""source /home/ec2-user/.rvm/scripts/rvm; cd ${APP_DIR}; ${START_CMD} >> ${LOG_FILE} 2>&1 &""

RETVAL=0
start() {

status
if [ $? -eq 1 ]; then

[ `id -u` == '0' ] || (echo ""$SIDEKIQ runs as root only ..""; exit 5)
[ -d $APP_DIR ] || (echo ""$APP_DIR not found!.. Exiting""; exit 6)
cd $APP_DIR
echo ""Starting $SIDEKIQ message processor .. ""

su -c ""$CMD"" - $AS_USER

RETVAL=$?
#Sleeping for 8 seconds for process to be precisely visible in process table - See status ()
sleep 8
[ $RETVAL -eq 0 ] && touch $LOCK_FILEd
"
return $RETVAL
else
echo "$SIDEKIQ message processor is already running .. "
fi


}

stop() {

echo "Stopping $SIDEKIQ message processor .."
SIG="INT"
kill -$SIG `cat $PID_FILE`
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f $LOCK_FILE
return $RETVAL
}
status() {

ps -ef | grep 'sidekiq [0-9].[0-9].[0-9]' | grep -v grep
return $?
}

restart() {
stop
start
}

reload() {
restart
}

force_reload() {
case "$1" in
start)


stop)


restart)
;;
reload)
;;
force_reload)
;;
status)

status

if [ $? -eq 0 ]; then
echo "$SIDEKIQ message processor is running .."
RETVAL=0
else
echo "$SIDEKIQ message processor is stopped .."
RETVAL=1
fi

*)

exit 0

esac
exit $RETVAL

目前我正在手动运行 sidekiq。 bundle exec sidekiq -q mailer -q default -e qa -d -L/home/ec2-user/www/sps_qa/current/log/sidekiq.log 2>&1

最佳答案

创建一个 upstart 作业,以便在启动期间启动 sidekiq。 sidekiq wiki 中有一个示例。更改参数以匹配您的参数。 https://github.com/mperham/sidekiq/blob/master/examples/upstart/manage-one/sidekiq.conf

关于ruby-on-rails - Sidekiq 不会在 ec2 服务器重启时启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30659063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com