在启动时加载神剧本 - 需要全球宝石?

时间:2015-01-12 11:16:14

标签: ruby linux mongodb god

我用上帝来监视我的Ruby API和服务。我已经创建了Init脚本来在服务器启动时启动这些服务。这样做让我有了几个问题。

首先,我必须以root身份运行脚本?我发现当它加载init.d脚本时,进程将由root管理 - 需要Sudo进行任何更改。

其次,我已经为一些主要流程(例如瘦)创建了RVM包装器,它们运行得非常出色。但是我发现我使用的一些宝石如Mongo gem不会从bundler的上下文中加载(我假设这是由于脚本的加载方式以及它是以root身份加载的吗?)所以我是被迫做Gem安装Mongo(和bson)

有没有办法让init.d加载的脚本加载到bundler的上下文中?

我可能这样做完全错了,因为我还不熟悉Ruby部署和Linux配置。

以下是我的神剧本的一个例子:

require 'yaml'

config_path = '/opt/broker/current/config/api_config.yml'
config = YAML.load_file config_path

God.watch do |w|
  w.name = 'Broker_API'
  pid_file = config[:pid_file_path]
  w.pid_file = pid_file

  w.behavior :clean_pid_file

  w.dir = config[:deployed_current_path]
  w.env = config[:deployed_current_path]

  port = config[:api_port]
  server_logs = config[:api_logs]
  config_ru = config[:api_config_file]

  w.start = 'bundle exec thin -l %s -P %s -d -D -R %s -p %s --threaded start' %[server_logs, pid_file, config_ru, port]
  w.stop = 'bundle exec thin -l %s -P %s -d -D -R %s -p %s --threaded stop' %[server_logs, pid_file, config_ru, port]
  w.restart = 'bundle exec thin -l %s -P %s -d -D -R %s -p %s --threaded restart' %[server_logs, pid_file, config_ru, port]
  w.log = config[:api_god_log]

  w.keepalive
end

和我的初始脚本:

#!/bin/sh

### BEGIN INIT INFO
# Provides: god
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: God
### END INIT INFO

NAME=god
DESC=god
GOD_BIN=/home/username/.rvm/wrappers/Godrunner/god
GOD_CONFIG=/etc/god/god.conf
GOD_LOG=/var/log/god.log
GOD_PID=/var/run/god.pid

set -e

RETVAL=0

case "$1" in
  start)
    echo -n "Starting $DESC: "
    $GOD_BIN load -c $GOD_CONFIG
 exit 0
fi

RETVAL=0

case "$1" in
  start)
    echo -n "Starting $DESC: "
    $GOD_BIN load -c $GOD_CONFIG
    RETVAL=$?
    echo "$NAME."
    ;;
  status)
 $GOD_BIN status
    RETVAL=$?
    ;;
  *)
    echo "Usage: god {start|status}"
    exit 1
    ;;
esac

exit $RETVAL

1 个答案:

答案 0 :(得分:1)

我已经这样解决了:

daemon --user $USER "$GOD_BIN \
-c $CONFIG_FILE \
-l $LOG_FILE \
--log-level $LOG_LEVEL \
-P $PID_FILE >/dev/null"

这是应该取代$GOD_BIN load -c $GOD_CONFIG的部分。现在上帝以$ USER运行。

现在,如果您想知道红宝石和宝石的位置,您必须提供此信息。我在做

source /etc/profile.d/ruby.sh

脚本开头的某处。

ruby​​.sh内容:

export PATH=/opt/ruby-2.1/bin/:$PATH
export GEM_PATH=/opt/ruby-2.1/lib64/ruby/gems/2.1.0