after removing custom app my site is not working any help
Hi @rtdany10 but again and agian i need to start server, why it is not taking by default port 8000
it is saying already in use. how can i start site in 8000
You might have started bench and then closed the terminal without killing it, causing it to run as a zombie process.
Try killing the zombie process:
kill -9 $(ps aux | grep ‘your-bench-name-here’ | awk ‘{print $2}’)
kill -9 $(netstat -tulpn | grep ‘:9004’ | awk ‘{print $7}’ | awk -F’/’ ‘{print $1}’)
Then run bench start
Run netstat -tulpn
and see which process is taking up the port 8000.
If it’s a zombie process, you can kill it and then run bench start
.
after trying command “netstat -tulpn” i am getting like this in screenshot shown
its not showing process id so how can i delete
Feel free to google once as well.