Stopping a Jekyll server with ctrl-z can cause issues as the process is not stopped fully. To kill it:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>
And next time, use crtl-c to stop.
Stopping a Jekyll server with ctrl-z can cause issues as the process is not stopped fully. To kill it:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>
And next time, use crtl-c to stop.
Try this!
ps aux |grep jekyll |awk '{print $2}' | xargs kill -9
Accidentally stopped instead of killing Jekyll and this helped. Thanks!
ps aux |grep jekyll |awk '{print $2}' | xargs kill -9
Worked for me. Thanks!
@xandermar @kevinsingh5 You're welcome
Thanks!