Sha256: 09f4e8530f144eaf96b7dc0867b3800169e67a001401dba1097789093ab9f678

Contents?: true

Size: 683 Bytes

Versions: 2

Compression:

Stored size: 683 Bytes

Contents

# enconding: utf-8
module Mutx
  module Commands
    def self.help
      Mutx::Support::Log.debug "#{self}:#{__method__}" if Mutx::Support::Log
      puts "

      Mutx has some commands:

        - install
        - start
        - stop
        - restart
        - reset

      Note: If you stop mutx and then you want to get it up and the port you are using is already in use
            you could use the following commands (Ubunutu OS):

                $sudo netstat -tapen | grep :8080

            In this example we use the port 8080. This command will give you the app that is using the port.
            Then you could kill it getting its PID previously."
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mutx-0.1.4 lib/mutx/commands/help.rb
mutx-0.1.3 lib/mutx/commands/help.rb