Created
February 8, 2019 10:11
-
-
Save xiaotian-tan/86c46fa18b084e73a2a1d0e71fce31ee to your computer and use it in GitHub Desktop.
kill go services in dev enviornment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find service running on port 8080 | |
lsof -i :8080 | |
# kill services by PID | |
kill -9 PID | |
# Check process runned related to go | |
ps -ef|grep "go" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment