📌  相关文章
📜  linux 中使用的端口 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:25.843000             🧑  作者: Mango

代码示例4
# To check the listening ports and applications on Linux
# Use any of the following command on terminal

sudo lsof -i -P -n | grep LISTEN 

sudo netstat -tulpn | grep LISTEN

sudo lsof -i:80 # see a specific port such as 80

@Oceangreen Technology - We Work For Excellence