Check the port occupy on Mac OSX
时间:2019-10-06 18:50:58
收藏:0
阅读:73
Check the port occupy on Mac OSX
lsof -i :7070
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
sivoxy 64888 wgg 6u IPv4 0x6ddd270 0t0 TCP *:gds_db (LISTEN)
We have the PID of that app occupying port.
Locating the executable file of that PID
ps xuwww -p PID
PID (64888) is the process id you are looking. for More help on ps
command you can find with
man ps
原文:https://www.cnblogs.com/sonictl/p/11627799.html
评论(0)