It’s possible that a previous instance of node may still be running, even if you intended to kill it. Check your processes, I sometimes get this issue and generally use
1 |
<span class="pln">killall node</span> |
to resolve it.
You can fix it by
pkill node
OR you can use this
killall node
you still see node process with this command: ps aux | grep node.