I have a problem when i start my application by Spring, the port 8080 is allready listening by a service, which is "rundll32.exe", apparently a legitime file from system32, but even when i kill it, it come back, here is my prompt commands:
tasklist | findstr 15448
rundll32.exe 15448 Services 0 56,592 K
netstat -ano | findstr 8080
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 15448
taskkill /F /pid 15448
SUCCESS: The process with PID 15448 has been terminated.
netstat -ano | findstr 8080
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 9796
tasklist | findstr 9796
rundll32.exe 9796 Services 0 55,976 K
As you can see, the service always listening the port8080. I tried to search a solution but i did not find a similar problem on the internet. Have you any suggestion? (I killed the rundll32 process in the Services list, but nothing has change)