我使用上帝来监视我的 Ruby API 和服务。我创建了初始化脚本来在服务器启动时启动这些服务。这样做让我提出了几个问题。
首先,我必须让脚本以 root 身份运行?我发现当它加载 init.d 脚本时,进程将由 root 管理 - 需要 Sudo 进行任何更改。
其次,我为一些工作出色的主要流程(例如瘦)创建了 RVM 包装器。但是发现我使用的一些 gem,例如 Mongo gem 不会从捆绑器的上下文中加载(我认为这是由于脚本的加载方式以及它是作为 root 加载的?)所以我是被迫做一个宝石安装蒙戈(和bson)
有没有办法让 init.d 加载的脚本在捆绑器的上下文中加载?
我可能完全错了,因为我对 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