启动Tomcat时报错:错误: 代理抛出异常错误: java.rmi.server.ExportException: Port already in use: 1101; nested exception is: java.net.BindException: Address already in use: JVM_Bind

报错:

  错误: 代理抛出异常错误: java.rmi.server.ExportException: Port already in use: 1101; nested exception is:  java.net.BindException: Address already in use: JVM_Bind

表示1101被占用了,打开cmd,使用以下命令:

  netstat -aon|findstr 1101,找出占用的进程,然后再用  taskkill -f -pid 6732 结束进程,最后启动Tomcat就可以了

原文地址:https://www.cnblogs.com/ljmm/p/13438296.html