一、WINDOWS查看网络端口
C:\Windows\System32>netstat -ano|findstr “1521”
TCP 192.168.3.86:49830 192.168.3.211:1521 ESTABLISHED 5992
TCP 192.168.3.86:49831 192.168.3.211:1521 TIME_WAIT 0
二、查看端口对应的是什么进程
C:\Windows\System32>tasklist | findstr 5992
plsqldev.exe 5992 Console 1 78,712 K
三、然后KILL进程使用以下指令: -f 用来强制执行
C:\Windows\System32>taskkill /pid 5992 -t -f
成功: 已终止 PID 1664 (属于 PID 5992 子进程)的进程。
成功: 已终止 PID 5992 (属于 PID 6076 子进程)的进程。
四、检查端口占用情况–逐渐释放
C:\Windows\System32>netstat -ano|findstr “1521”
TCP 192.168.3.86:49831 192.168.3.211:1521 TIME_WAIT 0
C:\Windows\System32>netstat -ano|findstr “1521”