Autosave: 2024-03-17 11:00:04
This commit is contained in:
parent
5ba5ef0e38
commit
3c795f4b20
1 changed files with 18 additions and 0 deletions
|
@ -17,3 +17,21 @@ $ 7890
|
|||
sudo kill -9 7890
|
||||
# Kill the process that is running there
|
||||
```
|
||||
|
||||
## Alterntive
|
||||
|
||||
```sh
|
||||
ss -ltnp | grep ':8000'
|
||||
```
|
||||
|
||||
Returns:
|
||||
|
||||
```
|
||||
LISTEN 0 511 [::1]:8000 [::]:* users:(("node",pid=10493,fd=34))
|
||||
```
|
||||
|
||||
Kill with:
|
||||
|
||||
```
|
||||
kill 10493
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue