Deployment 使用capistrano和x2B部署rails;Nginx+;乘客+;MYSQL到VPS

Deployment 使用capistrano和x2B部署rails;Nginx+;乘客+;MYSQL到VPS,deployment,nginx,ruby-on-rails-3.2,capistrano,passenger,Deployment,Nginx,Ruby On Rails 3.2,Capistrano,Passenger,这是我第一次部署rails应用程序,我发现这个过程非常令人沮丧。出于与工作相关的原因,我们将Rackspace云与Ubuntu12.04LTS(精确穿山甲)和MYSQL一起使用,而不是使用Heroku路径 我已经花了两天多的时间试图解决这个问题,我终于向社区寻求帮助。目前我收到一个“404在我的服务器上找不到错误” 我已经关注了Ryan关于“部署到VPS”、“Capistrano菜谱”以及谷歌上其他内容的屏幕广播,但我仍然不太清楚 我设法安装了以下组件: Node.js RVM ruby 1.

这是我第一次部署rails应用程序,我发现这个过程非常令人沮丧。出于与工作相关的原因,我们将Rackspace云与Ubuntu12.04LTS(精确穿山甲)和MYSQL一起使用,而不是使用Heroku路径

我已经花了两天多的时间试图解决这个问题,我终于向社区寻求帮助。目前我收到一个“404在我的服务器上找不到错误”

我已经关注了Ryan关于“部署到VPS”、“Capistrano菜谱”以及谷歌上其他内容的屏幕广播,但我仍然不太清楚

我设法安装了以下组件:

  • Node.js
  • RVM
  • ruby 1.9.3p194(2012-04-20修订版35410)[x86_64-linux]
  • 轨道3.2.8
  • MYSQL
  • 乘客
  • Nginx
我很确定我的Capistrano部署器中缺少了一些简单的东西:

require "bundler/capistrano"

server "198.101.242.242", :web, :app, :db, primary: true

set :application, "myapp"
set :user, "deployer"
set :deploy_to, "/home/#{user}/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false

set :scm, "git"
set :repository, "git@github.com:xxxx/#{application}.git"
set :branch, "master"

default_run_options[:pty] = true
ssh_options[:forward_agent] = true

# if you want to clean up old releases on each deploy uncomment this:
after "deploy", "deploy:cleanup"

# if you're still using the script/reaper helper you will need
# these http://github.com/rails/irs_process_scripts

# If you are using Passenger mod_rails uncomment this:
namespace :deploy do
  task :start do ; end
  task :stop do ; end
  task :restart, :roles => :app, :except => { :no_release => true } do
    run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
  end
end
部署前我应该做些什么

以下是Nginx错误日志:

2012/09/16 23:22:17 [error] 13939#0: *1 "/home/deployer/myapp/public/index.html" is not found (2: No such file or directory), client: ip, server: localhost, request: "GET / HTTP/1.1", host: "ip"
2012/09/16 23:22:17 [error] 13939#0: *1 open() "/home/deployer/myapp/public/favicon.ico" failed (2: No such file or directory), client: ip, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "65.61.189.109"
2012/09/16 23:22:19 [error] 13939#0: *1 "/home/deployer/myapp/public/index.html" is not found (2: No such file or directory), client: ip, server: localhost, request: "GET / HTTP/1.1", host: "ip"
2012/09/16 23:22:19 [error] 13939#0: *1 open() "/home/deployer/myapp/public/favicon.ico" failed (2: No such file or directory), client: ip, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "ip"
Nginx服务器配置文件:

    #user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    passenger_root /home/deployer/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17;
    passenger_ruby /home/deployer/.rvm/wrappers/ruby-1.9.3-p194/ruby;

    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {

      listen 80;
      server_name localhost;
      location / {
            root /home/deployer/myapp/public;   # <--- be sure to point to 'public'!
      }
      passenger_enabled on;

        # listen       80;
        # server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        # location / {
        #     root   html;
        #     index  index.html index.htm;
        # }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        # error_page   500 502 503 504  /50x.html;
        # location = /50x.html {
        #     root   html;
        # }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

   # server {
   #    listen 80;
   #    server_name localhost;
   #      location / {
   #            root /home/deployer/myapp/public;   # <--- be sure to point to 'public'!
   #    }
   #      passenger_enabled on;
   # }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
#用户无人;
工人1;
#错误日志/error.log;
#错误日志/error.log通知;
#错误日志/error.log信息;
#pid日志/nginx.pid;
事件{
工人(1024);;
}
http{
passenger_root/home/deployer/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17;
乘客_ruby/home/deployer/.rvm/wrappers/ruby-1.9.3-p194/ruby;
包括mime.types;
默认_类型应用程序/八位字节流;
#日志格式主“$remote\u addr-$remote\u user[$time\u local]“$request””
#“$status$body\u bytes\u sent”$http\u referer”
#“$http_user_agent”“$http_x_forwarded_for””;
#access_log logs/access.log main;
发送文件到;
#tcp_nopush on;
#保持激活超时0;
保持生命超时65;
#gzip on;
服务器{
听80;
服务器名称localhost;
地点/{

root/home/deployer/myapp/public;#好的,所以我最终通过反复试验和评论找出了问题所在

第一个问题是capistrano无法从我的应用程序中安装一些具有依赖性的gem。因此,我在生产中安装了这些gem…特别是rvm capistrano gem和rmagick。rvm capistrano gem是主要问题,也是我在卸载时出错的原因。rmagick是在修复了我解决的rvm问题之后出现的通过安装它的从属项

我遇到的第二个问题是指向我的应用文件夹myapp/public,而不是Nginx服务器配置文件中的当前版本myapp/current/public。因此,我保留了现有的服务器块,并将我的设置放在其中,然后它就工作了。以下是Nginx服务器配置文件的设置

server {

      listen 80;
      server_name localhost;
      root /home/deployer/banking_analytics/current/public;   # <--- be sure to point to 'public'!
      passenger_enabled on;

        # listen       80;
        # server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        # location / {
        #     root   html;
        #     index  index.html index.htm;
        # }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        # error_page   500 502 503 504  /50x.html;
        # location = /50x.html {
        #     root   html;
        # }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

   # server {
   #    listen 80;
   #    server_name localhost;
   #      location / {
   #            root /home/deployer/banking_analytics/public;   # <--- be sure to point to 'public'!
   #    }
   #      passenger_enabled on;
   # }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
服务器{
听80;
服务器名称localhost;

root/home/deployer/banking_analytics/current/public;#不久前,我在第一次部署时遇到了类似的错误

在我的例子中,我在mod-http-passer.conf文件中设置了一个错误的路径

我的建议是在nginx设置中启用乘客友好的错误页面,以获取更多错误信息。在某些情况下,它似乎比日志更好

在服务器端

sudo vim /etc/nginx/sites-enabled/myApp


您是否尝试过将应用程序的nginx配置放置在新的服务器块中?我记得我遇到过类似的情况。感谢您的建议,我只是根据您的评论尝试了一下,但没有效果。我不确定“客户端”的用途ip地址在日志文件中。这一点都不正确。我不知道这是从哪里来的。我想这就是你访问网站的地方。你的cap deploy命令是否成功运行?你的绑定器有问题,请检查你的答案和问题是否变得简洁。有没有可能促使你编辑它们以备发布rity?myapp/current/public文件夹从何而来?我只有“myapp/public”Capistrano在部署时应创建/当前/发布和/共享。请检查Capistrano日志
passenger_friendly_error_pages on;