Error: Proxy throw exceptions: java.rmi.server.ExportException: Port already in use: 1099; nested exception is: java.net.BindException: Address already in use: JVM_Bind

Error: Proxy throw exceptions: java.rmi.server.ExportException: Port already in use: 1099; nested exception is: java.net.BindException: Address already in use: JVM_Bind


When using SpringMVC test, I encountered such a problem that the port is already in use

Acting throw exceptions: java.rmi.server.ExportException: Port already in use: 1099

Port is occupied

solution:

1. Find out the process id occupied

2. kill the process

命令:

第一步: netstat -ano|findstr 1099
第二步: taskkill -f -pid 4836

Guess you like

Origin www.cnblogs.com/xianyao/p/11614259.html