我正在使用Linode部署一个rails应用程序。我一直在遵循这个教程:https://matthewhoelter.com/2020/11/10/deploying-ruby-on-rails-for-ubuntu-2004.html
当我试图访问我的网站时,我得到ERR_CONNECTION_REFUSED.
我一直在调试这个。
nginx.conf
upstream puma {
server unix:///home/deploy/apps/PhotographerFind/shared/tmp/sockets/PhotographerFind-puma.sock;
}
server {
listen 80 default_server deferred;
# If you're planning on using SSL (which you should), you can also go ahead and fill out the following server_name variable:
# server_name example.com;
# Don't forget to update these, too
root /home/deploy/apps/PhotographerFind/current/public;
access_log /home/deploy/apps/PhotographerFind/current/log/nginx.access.log;
error_log /home/deploy/apps/PhotographerFind/current/log/nginx.error.log info;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @puma;
location @puma {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://puma;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 10M;
keepalive_timeout 10;
}
deploy.rb
# # config valid for current version and patch releases of Capistrano
# lock "~> 3.15.0"
# Change these
server 'ip.address.here', port: 22, roles: [:web, :app, :db], primary: true
set :repo_url, 'git@ssh.dev.azure.com:v3/gitrepo/myrepo/myrepo'
set :application, 'PhotographerFind'
# If using Digital Ocean's Ruby on Rails Marketplace framework, your username is 'rails'
set :user, 'deploy'
set :puma_threads, [4, 16]
set :puma_workers, 0
# Don't change these unless you know what you're doing
set :pty, true
set :use_sudo, false
set :stage, :production
set :deploy_via, :remote_cache
set :deploy_to, "/home/#{fetch(:user)}/apps/#{fetch(:application)}"
set :puma_bind, "unix://#{shared_path}/tmp/sockets/#{fetch(:application)}-puma.sock"
set :puma_state, "#{shared_path}/tmp/pids/puma.state"
set :puma_pid, "#{shared_path}/tmp/pids/puma.pid"
set :puma_access_log, "#{release_path}/log/puma.access.log"
set :puma_error_log, "#{release_path}/log/puma.error.log"
set :ssh_options, { forward_agent: true, user: fetch(:user), keys: %w(~/.ssh/id_rsa.pub) }
set :puma_preload_app, true
set :puma_worker_timeout, nil
set :puma_init_active_record, true # Change to false when not using ActiveRecord
namespace :puma do
desc 'Create Directories for Puma Pids and Socket'
task :make_dirs do
on roles(:app) do
execute "mkdir #{shared_path}/tmp/sockets -p"
execute "mkdir #{shared_path}/tmp/pids -p"
end
end
before :start, :make_dirs
end
namespace :deploy do
desc "Make sure local git is in sync with remote."
task :check_revision do
on roles(:app) do
unless `git rev-parse HEAD` == `git rev-parse origin/master`
puts "WARNING: HEAD is not the same as origin/master"
puts "Run `git push` to sync changes."
exit
end
end
end
desc 'Initial Deploy'
task :initial do
on roles(:app) do
before 'deploy:restart', 'puma:start'
invoke 'deploy'
end
end
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
invoke 'puma:restart'
end
end
before :starting, :check_revision
after :finishing, :compile_assets
after :finishing, :cleanup
end
set :linked_files, fetch(:linked_files, []).push("config/master.key")
puma.access.log
Puma starting in single mode...
* Version 3.12.6 (ruby 2.6.3-p62), codename: Llamas in Pajamas
* Min threads: 4, max threads: 16
* Environment: production
* Daemonizing...
=== puma startup: 2021-02-18 06:23:44 +0000 ===
=== puma startup: 2021-02-18 06:26:53 +0000 ===
* Listening on unix:///home/deploy/apps/PhotographerFind/shared/tmp/sockets/PhotographerFind-puma.sock
puma.error.log
=== puma startup: 2021-02-18 06:23:44 +0000 ===
/home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:395:in `for_fd': Bad file descriptor - fstat(2) (Errno::EBADF)
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:395:in `inherit_unix_listener'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:115:in `block in parse'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:90:in `each'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:90:in `parse'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/runner.rb:153:in `load_and_bind'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/single.rb:98:in `run'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/launcher.rb:186:in `run'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/cli.rb:80:in `run'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/bin/puma:10:in `<top (required)>'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/bin/puma:23:in `load'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/bin/puma:23:in `<main>'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/bin/ruby_executable_hooks:24:in `eval'
from /home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/bin/ruby_executable_hooks:24:in `<main>'
=== puma startup: 2021-02-18 06:26:53 +0000 ===
我认为这可能指向问题,但似乎不是每次puma启动时都这样,所以我不太确定这里发生了什么。
更新我以为它可能与端口有关,但这是sudo netstat -ntlp | grep LISTEN
的输出
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 7307/nginx: master
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 963/sshd
tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 955/postgres
tcp6 0 0 127.0.0.1:9200 :::* LISTEN 3892/java
tcp6 0 0 ::1:9200 :::* LISTEN 3892/java
tcp6 0 0 127.0.0.1:9300 :::* LISTEN 3892/java
tcp6 0 0 ::1:9300 :::* LISTEN 3892/java
tcp6 0 0 :::22 :::* LISTEN 963/sshd
tcp6 0 0 :::5432 :::* LISTEN 955/postgres
/var/log/nginx/error.log
中的内容:
2021/02/18 23:09:58 [notice] 7325#7325: signal process started
我注意到Puma只在重启时抛出坏文件描述符。它好像在跑。这是puma.access.log
的内容:
=== puma startup: 2021-02-18 23:04:28 +0000 ===
[6971] - Worker 0 (pid: 6973) booted, phase: 0
[6971] - Worker 1 (pid: 6979) booted, phase: 0
我认为这可能是一个端口问题,并从sudo ufw status numbered
得到这个输出,这似乎是正确的:
Status: active
To Action From
-- ------ ----
[ 1] 80,443/tcp ALLOW IN Anywhere
[ 2] 22,80,443/tcp ALLOW IN Anywhere
[ 3] 80,443/tcp (v6) ALLOW IN Anywhere (v6)
[ 4] 22,80,443/tcp (v6) ALLOW IN Anywhere (v6)
在这一点上,我不知道从哪里寻找根本问题。有什么建议吗?
编辑# 2我现在注意到,如果我尝试去浏览器中的IP地址,我得到连接拒绝,但如果我尝试去IPADDRESS:3000,我得到连接超时。我不确定这是否相关。
该错误与您的套接字文件有关,如您的puma.error.log:
/home/deploy/apps/PhotographerFind/shared/bundle/ruby/2.6.0/gems/puma-3.12.6/lib/puma/binder.rb:395:in `for_fd': Bad file descriptor - fstat(2) (Errno::EBADF)
您可以尝试以下操作,仅用于确认套接字文件有问题:
- 使用
-w 1
在单工作模式启动puma - 在nginx和puma之间使用端口而不是套接字进行通信
如果我没弄错的话,两个都应该可以工作。
您的解决方案是将puma作为服务启动,而不是使用Capistrano启动。要做到这一点,您可以遵循puma的开发人员文档在这里:https://github.com/puma/puma/blob/master/docs/systemd.md.
但是,在我看来,你最好使用另一个应用服务器,比如Passenger,因为你不需要反向代理。