Closed sirex closed 8 years ago
hmm. Could you check if any node process is still running on your machine on 3000?
Looks like running:
$ sudo netstat -tunlp | grep 3000
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN 32312/node
This means that webpack-server.js
is already running.
$ ps uxa | grep webpack
menesis 20874 0.0 0.0 4516 764 pts/18 S+ 17:02 0:00 sh -c node webpack-server.js
menesis 20875 13.7 6.1 1388340 229064 pts/18 Sl+ 17:02 0:09 node webpack-server.js
I simply
$ killall node
$ make run
I suspect that happens when there is a syntax error or something and django devserver stops.
@menesis thanks, yes indeed, killing node helped.
Not sure if this brakes something or not, but letting you know: