TCPServer Error: Address already in use - bind(2)

后端 未结 8 1126
无人共我
无人共我 2020-12-07 07:38

Jekyll was working fine for me few weeks back but now all of a sudden it gives me the following error:

TCPServer Error: Address already in use - bind(2)
INFO         


        
8条回答
  •  离开以前
    2020-12-07 08:11

    Type this in your terminal to find out the PID of the process that's using the 3000 port:

    $ lsof -wni tcp:3000
    

    Then, use the number in the PID column to kill the process:

    $ kill -9 PID
    

提交回复
热议问题