linux如何檢視埠
1、lsof -i:埠號 用於檢視某一埠的占用情況,比如檢視8000埠使用情況,lsof -i:8000
# lsof -i:8000可以看到8000埠已經被輕量級檔案系統**服務lwfs占用command pid user fd type device size/off node name
lwfs
22065 root 6u ipv4 4395053 0t0 tcp *:irdmi (listen)
2、netstat -tunlp |grep 埠號,用於檢視指定的埠號的程序情況,如檢視8000埠的情況,netstat -tunlp |grep 8000
# netstat -tunlpactive internet connections (only servers)
proto recv-q send-q local address foreign address state pid/program name
tcp 00
0.0.0.0:111
0.0.0.0:* listen 4814/rpcbind
tcp 00
0.0.0.0:5908
0.0.0.0:* listen 25492/qemu-kvm
tcp 00
0.0.0.0:6996
0.0.0.0:* listen 22065/lwfs
tcp 00
192.168.122.1:53
0.0.0.0:* listen 38296/dnsmasq
tcp 00
0.0.0.0:22
0.0.0.0:* listen 5278/sshd
tcp 00
127.0.0.1:631
0.0.0.0:* listen 5013/cupsd
tcp 00
127.0.0.1:25
0.0.0.0:* listen 5962/master
tcp 00
0.0.0.0:8666
0.0.0.0:* listen 44868/lwfs
tcp 00
0.0.0.0:8000
0.0.0.0:* listen 22065/lwfs
# netstat -tunlp | grep說明一下幾個引數的含義:8000
tcp 00
0.0.0.0:8000
0.0.0.0:* listen 22065/lwfs
-t (tcp) 僅顯示tcp相關選項-u (udp)僅顯示udp相關選項
-n 拒絕顯示別名,能顯示數字的全部轉化為數字
-l 僅列出在listen(監聽)的服務狀態
-p 顯示建立相關鏈結的程式名
linux檢視埠占用情況
1 lsof i 埠號 2 netstat tunlp grep 埠號 都可以檢視指定埠被哪個程序占用的情況 步驟一 lsof i lsof i 用以顯示符合條件的程序情況,lsof list open files 是乙個列出當前系統開啟檔案的工具。以root使用者來執行lsof i命令,如下圖 步...
Linux 檢視埠占用情況
lsof list open files 是乙個列出當前系統開啟檔案的工具。lsof 檢視埠占用語法格式 lsof i 埠號檢視伺服器 8000 埠的占用情況 lsof i 8000 command pid user fd type device size off node name nodejs ...
linux 檢視埠占用情況
linux 檢視埠占用情況可以使用 lsof 和 netstat 命令。lsof list open files 是乙個列出當前系統開啟檔案的工具。lsof 檢視埠占用語法格式 lsof i 埠號 例項檢視伺服器 8000 埠的占用情況 lsof i 8000 command pid user fd...