node.js express socket.io port 3000 in use

后端 未结 8 559
南笙
南笙 2021-02-02 16:33

I\'ve been following this(http://socket.io/get-started/chat/) tutorial on how to make a simple chat application using socket.io.

I tried to however use Express to create

8条回答
  •  孤街浪徒
    2021-02-02 17:21

    Try running:

    netstat -anp tcp | grep 3000
    

    This should show you the name of the process that is using port 3000. Here's another issue on StackOverflow that covers this issue in more depth.

提交回复
热议问题