Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Last active February 28, 2022 16:57
Kill Jekyll server

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.

@suvozy
Copy link

suvozy commented Feb 28, 2022

@xandermar @kevinsingh5 You're welcome ☺️ 🙇‍♂️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment