RpcException:No provider available for remote service异常
出现RpcException:No provider available for remote service异常,表示没有可用的服务提供者。
解决思路:
1.检查连接的注册中心是否正确
2.到注册中心查看响应的服务提供者是否存在
3.检查服务提供者是否正常运行--》访问监控中心 http://ip:8080/dubbo-admin/ 访问该web项目,可看到 服务/应用/提供者/消费者/负载均衡
4.服务提供者没挂,但在注册中心里看不到 ?
首先,确认服务提供者是否连接了正确的注册中心,不只是检查配置中的注册中心地址,而且要检查实际的网络连接。
其次,看服务提供者是否非常繁忙,比如压力测试,以至于没有CPU片段向注册中心发送心跳,这种情况,减少压力,将自动恢复。
RpcException:No provider available for remote service异常的更多相关文章
- dubbo rest服务 No provider available for the service 错误问题
		
1.版本 dubbo 2.6.2 2.描述 消费者调用dubbo rest服务报No provider available for the service错误 网络上有讲是实体类未实现Serializ ...
 - [dubbo] dubbo  No provider available for the service
		
com.alibaba.dubbo.rpc.RpcException: Failed to invoke the method queryTemplate in the service com.x.a ...
 - [解决问题]selenium.remote.UnreachableBrowserException 异常分析并解决问题
		
I have a set of automations that work fantastically in Firefox and Chrome, and I'd like to launch an ...
 - Dubbo client 启动报错:No provider available for the service use dubbo version 2.5.3
		
1.异常 java.lang.IllegalStateException: Failed to check the status of the service org.ko.server.servic ...
 - duboo服务调用不到的原因(dubbo启动消费者报错:No provider available for the service)
		
com.alibaba.dubbo.rpc.RpcException: Failed to invoke the method queryTemplate in the service com.x.a ...
 - dubbo错误排查之No provider available for the service
		
今天搞的一个dubbo服务,暴漏出来了,但是consumer端启动就报这个错,排查过程记录一下 一.启动zkCli 利用命令查看 ls / ls /dubbo 继续查看 ls /dubbo/com.w ...
 - No provider available for the service com.xxx.xxx 错误解决
		
HTTP Status 500 - Servlet.init() for servlet springmvc threw exception type Exception report message ...
 - 启动dubbo消费端过程提示No provider available for the service的问题定位与解决
		
文/朱季谦 某次在启动dubbo消费端时,发现无法从zookeeper注册中心获取到所依赖的消费者API,启动日志一直出现这样的异常提示 Failed to check the status of t ...
 - angularjs中provider,factory,service的区别和用法
		
angularjs中provider,factory,service的区别和用法 都能提供service,但是又有差别 service 第一次被注入时实例化,只实例化一次,整个应用的生命周期中是个单例 ...
 
随机推荐
- JDK之ThreadLocal分析
			
ThreadLocal是在是Thread的一个局部变量,今天我来分析了一下这个类 先看ThreadLocal的set方法 public void set(T value) { Thread t = T ...
 - sublime text3 安装配置
			
sublime text 3 语法检查插件(一直都是安装了但是却没有语法报错提示和苦恼) 第一种方法:有点卡 先去下载对应的开发环境,安装到本地,例如php. 从Pakage Control中安装su ...
 - css 变手
			
用css 添加手状样式,鼠标移上去变小手,变小手 用css 添加手状样式,鼠标移上去变小手,变小手 cursor:pointer; 用JS使鼠标变小手onmouseover(鼠标越过的时候) onmo ...
 - CodeMirror:基于JavaScript的代码编辑器
			
官方网站定义: http://codemirror.net/ CodeMirror is a versatile text editor implemented in JavaScript for t ...
 - E - I Hate It(基础线段树)
			
E - I Hate It Time Limit:3000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Descr ...
 - EasyNVR智能云终端硬件与EasyNVR解决方案软件综合对比
			
背景分析 互联网视频直播越来越成为当前视频直播的大势,对于传统的安防监控,一般都是局限于内网,无法成批量上云台.传统的海康和大华的平台虽然可以通过自身私有协议上云平台 集总管控,但是往往只是支持自身的 ...
 - c# 如何利用异或运算进行简单加密解密
			
利用“^”异或运算对字符串进行加密 原理:按位做“异或”运算是->位值相同得1,不同得0,如下计算 1 ^ 1 = 0 1 ^ 0 = 1 0 ^ 1 = 1 0 ^ 0 = 0 例如: < ...
 - IOS 代码块
			
1.关系式表示 <returnType>(^BlockName)(list of arguments)=^(arguments){body;};
 - 一个jsp页面引入另一个jsp页面的三种方式 及静态引入和动态引入的区别
			
转载下, 转载自:http://blog.csdn.net/fn_2015/article/details/70311495 1.第一种:jstl import <c:import url=& ...
 - [NOIP2018PJ]对称二叉树
			
[NOIP2018PJ]对称二叉树 这个题正常人看到题面难道不是哈希? 乱写了个树哈希... #include<bits/stdc++.h> using namespace std; co ...