# File lib/starfish.rb, line 211
  def stop
    puts "stopping the server"
    Process.kill("SIGHUP", IO.read(@@options[:pid] || "#{Dir.tmpdir}/starfish-#{uniq}.pid").to_i)
  rescue Errno::ENOENT
    puts "Fatal error, please kill all starfish processes manually and try again"
    system("ps auxww|grep starfish")
  end