Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. First, `Ctrl+Z`.
  2.  
  3. Then in your terminal:
  4. ```bash
  5. $ kill -INT $(cat tmp/pids/server.pid)
  6. ```
  7.  
  8. Find out the PID of the process:
  9. ```bash
  10. $ lsof -wni tcp:3000
  11. ```
  12.  
  13. Then
  14. ```bash
  15. $ kill -9 PID
  16. ```
  17. where PID - is number from PID column.
  18.  
  19. Done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement