From f99a5314d30be145d7e6ee10e53ababbd6f1aac6 Mon Sep 17 00:00:00 2001
From: conni3p <147068336+conni3p@users.noreply.github.com>
Date: Sat, 27 Apr 2024 13:19:46 +0100
Subject: [PATCH] Update README.md
---
README.md | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 23edefb..07d86b5 100644
--- a/README.md
+++ b/README.md
@@ -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.
Run:
```
-ps aux
-```
-and look for the PID of the `/root/go/bin/node`.
-Once you know the PID of the `node` app, run:
-```
+ps aux | grep /root/go/bin/node
kill -9
+or
+
+pkill -f "/root/go/bin/node"
```
+
+
This will kill the process for the `node` app. You may proceed to the next section.