Skip to content
爱反垃圾堆
Main Navigation
首页 🎀
Docker 🐳
Kubernetes ☸️
应用 🎈
Elastic
Pulsar
More
编程 💯
Golang
Python
Web
Rust
OS 🧲
Linux
Ubuntu
CentOS
Windows
主题模式
章节目录
回到顶部
内容导航
[AlmaLinux8] 查看端口占用
bash
# 查看端口8000是否被占用
lsof
-i:8000
# 查看端口占用
netstat
-anp
|
grep
6650
# 安装netstat
yum
install
net-tool