Skip to content
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
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,13 +393,14 @@ Once you see the logs start to trail, you would want to stop the node for now. <
You need to open a new terminal window and SSH into your VPS again as root. <br/>
Run:
```
ps aux
```
and look for the PID of the `/root/go/bin/node`.<br/>
Once you know the PID of the `node` app, run:
```
ps aux | grep /root/go/bin/node
kill -9 <PID>
or

pkill -f "/root/go/bin/node"
```
<br/>


This will kill the process for the `node` app. You may proceed to the next section.

Expand Down