前提・実現したいこと
Railsチュートリアルを現在進めているのですが、本番環境へデプロイ後、ログインページにかかってローカルで確認しようと思うとrails serverが起動せず、即切れてしまいます。本番につなぐ設定をしたのが影響とは思うのですが、何か切り替えるような設定方法は無いのでしょうか。詳しい方、いらっしゃましたらアドバイス頂得ますと有難いです。よろしくお願いします。
発生している問題・エラーメッセージ
$ rails s => Booting Puma => Rails 5.1.6 application starting in development => Run `rails server -h` for more startup options ERROR: worker mode not supported on JRuby or Windows Exiting $ rails s -p C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor/parser/options.rb:228:in `parse_peek': No value provided for option '--port' (Thor::MalformattedArgumentError) from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor/parser/options.rb:100:in `parse' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor/base.rb:79:in `initialize' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor/invocation.rb:26:in `initialize' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor/shell.rb:45:in `initialize' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/commands/server/server_command.rb:123:in `initialize' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor.rb:388:in `new' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-1.0.1/lib/thor.rb:388:in `dispatch' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/command/base.rb:63:in `perform' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/command.rb:44:in `invoke' from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/commands.rb:16:in `<top (required)>' from bin/rails:4:in `require' from bin/rails:4:in `<main>'
該当のソースコード
ソースコード
試したこと
ネットの中に、Puma.rbファイルの
workers ENV.fetch("WEB_CONCURRENCY") { 2 } をコメントアウトする・・と
いうのがありましたので、やってみましたがやはり即座にexitして上記エラーと
大量のルーティングエラーが出ました。
$ heroku ps:scale web=0 コマンドでappを停止したのですがやはりpumaのエラーが出て
localhost:3000に繋がりません。
補足情報(FW/ツールのバージョンなど
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー