Rails / Uberspacify:503服务暂时不可用

时间:2013-07-30 11:28:59

标签: ruby-on-rails deployment capistrano uberspace uberspacify

我正在使用 uberspace.de uberspacify receipes集合测试capistrano。在开始使用 uberspacify 之前,我按照documentation provided by uberspace中的说明配置了服务器。我的RubyOnRails应用程序刚刚推出。现在我通过 uberspacify 进行部署,以下错误写在/var/www/virtual/john/logs/error_log中:

  

[错误](111)拒绝连接:代理:   HTTP:尝试连接到127.0.0.1:44477(*)失败

请注意,每次部署时端口44477都不同 该网站本身声明:

503 Service Temporarily Unavailable
The server is temporarily unable to service your request due to 
maintenance downtime or capacity problems. Please try again later.
Apache/2.2.15 (CentOS) Server at foobar.phoenix.uberspace.de Port 443

这是我准备的Capfile

# Capfile
load 'deploy'
# Uncomment if you are using Rails' asset pipeline
load 'deploy/assets'
load 'config/deploy' # remove this line to skip loading any of the default tasks

以下是deploy.rb中的配置:

# config/deploy.rb

# include uberspacify base recipes
require "uberspacify/base"

# comment this if you don"t use MySQL
require "uberspacify/mysql"

# the Uberspace server you are on
server "phoenix.uberspace.de", :web, :app, :db, :primary => true

# your Uberspace username
set :user, "john"

# a name for your app, [a-z0-9] should be safe, will be used for your gemset,
# databases, directories, etc.
set :application, "foobar"

# the repo where your code is hosted
set :scm, :git
set :repository, "git@bitbucket.org:obama/#{application}.git"
set :branch, "master"

# optional stuff from here

# By default, your app will be available in the root of your Uberspace. If you
# have your own domain set up, you can configure it here
# set :domain, "www.dummyapp.com"

# By default, uberspacify will generate a random port number for Passenger to
# listen on. This is fine, since only Apache will use it. Your app will always
# be available on port 80 and 443 from the outside. However, if you"d like to
# set this yourself, go ahead.
# set :passenger_port, 55555

# By default, Ruby Enterprise Edition 1.8.7 is used for Uberspace. If you
# prefer Ruby 1.9 or any other version, please refer to the RVM documentation
# at https://rvm.io/integration/capistrano/ and set this variable.
set :rvm_ruby_string, "1.9.3@#{application}"

我运行了以下命令:

$ bundle exec cap deploy:setup
$ bundle exec cap deploy:migrations

我想知道 uberspacify 是否负责所有配置。 uberspace tutorial for RubyOnRails fcgi .htaccess一起使用,具有重写规则。他们也使用 rvm

以下是应用程序的Gemfile

source 'https://rubygems.org'

ruby '1.9.3'
gem 'rails', '~> 3.2.13'
gem 'counter_culture', git: 'https://github.com/dorilla/counter_culture'
gem 'jquery-rails', '~> 3.0.2'
gem 'therubyracer', '~> 0.11.4', require: 'v8'
gem 'attribute_normalizer', '~> 1.1.0'
gem 'pry', '~> 0.9.12.2'

# Parsing ShapeFiles
gem 'rgeo', '~> 0.3.20'
gem 'rgeo-shapefile', '~> 0.2.3'
gem 'georuby', '~> 2.0.0'
gem 'dbf', '~> 2.0.6'
gem 'gdal', '~> 0.0.5'

gem 'capistrano', '~> 2.15.5'
gem 'uberspacify', '~> 0.9.3'
gem 'mysql2', '~> 0.3.13'

group :assets do
  gem 'sass-rails', '~> 3.2.5'
  gem 'coffee-rails', '~> 3.2.2'
  gem 'uglifier', '~> 2.1.1'
end

group :development do
  gem 'debugger', '~> 1.6.0'
end

group :development, :test do
  gem 'sqlite3', '~> 1.3.7'
  gem 'rspec-rails', '~> 2.14.0'
  gem 'rspec-smart-formatter', '~> 0.0.4', require: false
  gem 'factory_girl_rails', '4.2.1'
  gem 'factory_girl_extensions', '2.1.0'
end

group :production do
  gem 'mysql2', '~> 0.3.13'
end

我感兴趣的是我需要通过 toast 软件包管理器安装 gdal 库,通过:$ toast arm gdal才能成功安装{{1 }}。解析ShapeFiles需要这个gem。


我注意到$ gem install gdal~/.passenger成功处理后没有deploy:setup目录。

2 个答案:

答案 0 :(得分:1)

我是Uberspacify的作者。似乎带有你的Rails应用程序的Passenger还没有开始(还)。这就是为什么Apache报告"连接被拒绝"在44477端口 - 这是uberspacify为乘客和Apache之间的内部通信随机选择的端口。

要对此进行调试,您可能需要查看/var/www/virtual/< your username>/rails/<your app>/shared/log中的日志文件。

此外,请务必&#34;撤消&#34;您根据Uberspace的说明进行的任何配置更改。他们的指示仅用于FCGI部署,与Uberspacify无关(并且很可能不兼容)。使用Uberspacify的唯一先决条件是常规Rails应用程序和Uberspace帐户。

答案 1 :(得分:1)

在@patheticpat !!!

的帮助下解决了问题

以下是有助于分析服务器上的问题的步骤。

  • 检查网络服务器是否在所有运行$ curl http://localhost:{PORT}上运行。该端口位于~/html/.htaccess~/service/rails-{yourapp}/run
  • 要手动启动服务器,请执行$ ~/service/rails-{yourapp}/run并注意错误。
  • 当前部署可在/var/www/virtual/$USER/rails/{yourapp}/current
  • 中找到
  • 启动乘客手动运行$ bundle exec passenger start -p $PORT -e production
  • 启动Passenger即服务运行$ svc -u ~/service/rails-{yourapp}
  • 停止乘客服务运行$ svc -d ~/service/rails-{yourapp}

在这个反复试验过程中,我们发现存在PATH问题,我们注意到~/service/rails-{yourapp}/run来源$HOME/.bash_profile可以看到here。值得一提的是,我将 zsh oh-my-zsh 自定义dotfiles 结合使用。我们注意到我已经在~/.zshrc中配置了 rvm 。此文件已contains a source command

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

我们发现这实际上阻碍 rvm 将同一语句放入~/.bash_profile,因为它已经documented here

总结一下:如果从自定义的dotfiles中删除 rvm 配置,uberspacify将完美地设置并启动网络服务器。


@uberspacify:我建议你重写 rvm 脚本,注意提到here的警告,并做出适当的反应。