启动dubbo服务时报 qos-server can not bind localhost:22222 异常处理
这是dubbo快速入门的示例项目截图:
有时候我们在本机调试dubbo项目时,启动服务提供者Provider时也许是正常的(其实有时候也会报qos-server can not bind localhost:22222,这个时候是端口被其他软件占用了)。
但是,更多时候其实是调试服务消费者时报:qos-server can not bind localhost:22222,这其实是服务提供者已经把该端口占用了,那么服务消费者就不能使用该端口了,需要换一下。
那么我们可以在 dubbo-demo-consumer.xml中进行配置,修改qos-server的默认绑定端口。
<dubbo:application name="demo-consumer"> <dubbo:parameter key="qos.enable" value="true"/> <dubbo:parameter key="qos.accept.foreign.ip" value="false"/> <dubbo:parameter key="qos.port" value="22223" /> </dubbo:application>
修改位置截图:
知道了修改位置,那么就可以很简单的配置了。同时不仅可以修改消费者的配置信息,同时也可以把服务提供者的配置信息也修改了。
这样就解决了端口被占用无法绑定的问题。
参考资料:https://blog.csdn.net/u013202238/article/details/81432784
该博客内容分析了源码,更加深入全面。