Railsアプリのポート番号を変更

Updated: / Reading time: 1 minutes

Ruby on Railsアプリは、デフォルトでは3000番ポートを使用します。既に3000番ポートを使用している場合などは起動に失敗しますが、使用ポートを変更する場合、config/root.rbに以下を追記します(4000番ポートに変更する場合)。

require 'rails/commands/server'
module Rails
  class Server
    def default_options
      super.merge({
        :Port => 4000
      })
    end
  end
end

参考リンク