# File src/ruby_supportlib/phusion_passenger/standalone/stop_command.rb, line 36
      def run
        parse_options
        load_local_config_file
        load_env_config
        remerge_all_options

        find_pid_file
        create_controller
        begin
          running = @controller.running?
        rescue SystemCallError, IOError
          running = false
        end
        if running
          @controller.stop
        else
          Standalone::ControlUtils.warn_pid_file_not_found(@options)
          exit 1
        end
      end