强行关闭某个脚本的时候没有关闭端口,导致再次启动时提示Address already in use
解决方法:

lsof -i:PORT
# lsof -i:8080

记录下PID,并KILL掉即可。