I was running an app using morbo and had to kill it as it had become unresponsive. Once I tried to restart, I got an error back "Can't create listen socket: Address already in use at /sastore/bossert/lib/perl5/site_perl/5.16.1/Mojo/IOLoop.pm line 147."When I run netstat, I don't see anything that jumps out at me as still bound...but not an expert with that...Does anyone know how to handle this? I also tried listening on a different port...but that gave the same error.
--
You received this message because you are subscribed to the Google Groups "Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mojolicious...@googlegroups.com.
To post to this group, send email to mojol...@googlegroups.com.
Visit this group at http://groups.google.com/group/mojolicious?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
This may not help you, but I've had this on occasion as well. For me, every time I came to the realization that the morbo executable was still running despite not being listed by netstat. `pkill -9 -f morbo' took care of it for me. Then no more listening complaints.