Arc Forumnew | comments | leaders | submitlogin
1 point by jsgrahamus 5020 days ago | link | parent

In running through the tutorial, I did the following:

  arc> (defop hello req (pr "hello world"))
  #<procedure: gs1709>
  arc> (asv)
  ready to serve port 8080

  ^Z
  [1]+  Stopped                 ./goarc
  mint@mint ~/bin $ ./goarc
  Use (quit) to quit, (tl) to return here after an   
  interrupt.
Then I wanted to try some more, and it seems that the port is still in use.

  arc> (defop hello2 req (w/link (pr "there") (pr "here")))
  #<procedure: gs1709>
  arc> (asv)
  Error: "tcp-listen: listen on 8080 failed (Address   
  already in use; errno=98)"
  arc> (load "blog.arc")
  nil
  arc> (bsv)
  Error: "tcp-listen: listen on 8080 failed (Address 
  already in use; errno=98)"
Is there some way to turn the port off, or stop whatever is listening on it?

Thanks, Steve



2 points by jsgrahamus 5020 days ago | link

Answered my own question, again. Had a stopped job.

Sorry.

-----