Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # Code Snippets Log
  2. ### Jekyll
  3. * TCPServer Error: Address already in use
  4.  
  5.  
  6. ```shell
  7. # Find out the PID of the process that's using the xxxx port
  8. $ lsof -wni tcp:xxxx
  9. # Use the number in the PID column to kill the process
  10. $ kill -9 PID
  11. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement