How to search the process that buinding the port?
You can see it by th command!
lsof -i TCP | grep 7878
/*result here*/
Only you have to do is kill the process like the folllowing command.
kill -9 <PROCESS_NUMBER>
👍
You can see it by th command!
lsof -i TCP | grep 7878
/*result here*/
Only you have to do is kill the process like the folllowing command.
kill -9 <PROCESS_NUMBER>
👍
コメント