Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kill_server.md #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions all/kill_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ $ kill -9 4894
```

And that's it. You can kill this server without an error running.
A one liner for the above steps is

```
$ kill -9 $(lsof -ti :8000)
```
You can replace change the port number in case you are using a different ont.
Alternatively we can use the `fg` command in linux, which brings our processes to the foreground, and than press `ctrl + c` to quit the server.
For more help on fg use :

Expand Down