我是靠谱客的博主 优秀大树,最近开发中收集的这篇文章主要介绍Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

启动RMI报如下错误:

Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
java.net.SocketException: Connection reset
at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:304)
at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:202)
at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:338)
at sun.rmi.registry.RegistryImpl_Stub.rebind(RegistryImpl_Stub.java:147)
at gnnt.util.rmi.RMIServer.startRMI(RMIServer.java:110)
... 15 more
最后发现是端口冲突造成的,当时用的5003端口启动服务端的RMI刚好和本地的一个服务端口冲突。

输入netstat -aon|findstr "5003"查询它的pid为3056


继续输入tasklist|findstr "3056",查看是哪个进程或者程序占用了5003端口,结果是:magentproc.exe


找到PID后可以直接打开任务管理器,最后发现是LoadRunner占用了这个端口,关闭就可以 了


最后

以上就是优秀大树为你收集整理的Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception的全部内容,希望文章能够帮你解决Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部