How to stop a jekyll local server
Asked Answered
W

2

8

I've just set up my first Jekyll project locally. I've got the server running, but I forgot to use the auto flag. So now I want to stop the server and restart using the flag. However, in my command line after I started the server I didn't get a new prompt, so I can't enter any new commands. I'm not very used to the command line so I'd really appreciate knowing what I should do! I'm using Mac OS X and terminal.app if that makes a difference!

Windpipe answered 9/7, 2013 at 10:28 Comment(0)
A
10

You can stop it with CTRL + C.

Atropine answered 9/7, 2013 at 10:31 Comment(0)
F
18
ps aux |grep jekyll |awk '{print $2}' | xargs kill -9
Falcate answered 27/9, 2015 at 2:16 Comment(1)
Thanks, this answer helped me since I want to stop jekyll using a grunt task, so CTRL + C wouldn't help.Ryswick
A
10

You can stop it with CTRL + C.

Atropine answered 9/7, 2013 at 10:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.