Shallow Dream

Keep It Simple and Stupid!

0%

解决8080端口被占用的问题

Multisim 的 NI Application Web Server 占用了 8080 端口

学习 Java Web 的过程中,运行 Tomcat 提示 8080 端口被占用

image-20230807004846178

打开任务管理器,使用 netstat -aon|findstr "xxxx",查看被占用端口对应的 PID

1
2
C:\Users\20202>netstat -aon|findstr "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 22532

查看指定 PID 的进程,使用 tasklist|findstr "22532"

1
2
C:\Users\20202>tasklist|findstr "22532"
ApplicationWebServer.exe 22532 Services 0 19,524 K

这里这个应用程序 ApplicationWebServer.exe 就是 Multisim 的 NI Application Web Server

image-20230807012501298

停止运行后 8080 端口不再被占用,并且目前来看对 Multisim 的使用也没啥影响