Skip to content

Instantly share code, notes, and snippets.

@laymont
Last active November 23, 2022 14:29
Show Gist options
  • Save laymont/d13ea8187c880a4b4b4eb195e525a6ab to your computer and use it in GitHub Desktop.
Save laymont/d13ea8187c880a4b4b4eb195e525a6ab to your computer and use it in GitHub Desktop.
Detener Jekyll server

Para detener Jekyll server cuando por alguna razon no se detiene:

$ lsof -wni tcp:4000
$ kill -9 <PID of process>

La proxima vez que use el comando bundle exec jekyll server asegurese de detenerlo con la combinación de teclas Ctrl+C

Update otra alternativa

ps aux |grep jekyll |awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment