anyone know how to properly kill hung processes w/...
# help
s
anyone know how to properly kill hung processes w/ SST?
Copy code
? Something is already running on port 12577.
I did
kill -9
for any related processes. doesn’t seem to do the trick
and then ^C won’t kill the
yarn start
process. really weird
t
Hm I'm on linux so not sure how to find and kill the process
I usually use
pkill -9 node
to get rid of everything
s
oh nice, didn’t know about pkill
that did the trick. thanks!