Troubleshooting ‘RPC server unavailable’ 0x800706BA

简介:

Pls refer to: 

Troubleshooting ‘RPC server unavailable’ 0x800706BA

http://enterpriseit.co/windows-server/rpc-server-unavailable-0x800706ba/


Issue: You are getting the error: “The RPC Server is unavailable. (Exception from HRESULT: 0x800706BA)”


Cause: This error is likely caused by the RPC ports being blocked between the servers involved in the communication or server process you are trying to complete.



 

Background: RPC is categorized as the X11 protocol and is in the 6001 to 6032 port range.  Commonly 6007 is what is being blocked in this case.


Diagnosis: You can test RPC connectivity from the server you are on to another computer/server using the following command:

Get-WmiObject Win32_ComputerSystem –ComputerName OTHERSERVER

If communications fail you will see output similar to the following:

wKioL1aDSODA6lICAABrLeRtjQo318.png

If RPC communications are working between the servers you will output similar to the following:

wKiom1aDSN3iSj80AABOkYEmaHc601.png

You can also test specific ports, like 6007 using the telnet command.  If telnet is successful and the port is open then you will see a blank screen.  If telnet fails because the port is closed then it will simply time out as you can see in this example:

wKiom1aDSPKRjX6SAAA4fnS1dfg347.png

 

Resolution: Work on your firewall policies to make sure RPC is not being blocked.  Many firewalls (Watchguard) will block RPC and SMB/NetBios (NetScreen) even when you have ‘any-any’ rules in place.  In the case of WatchGuard you must specifically create a rule/policy to explicitly allow the RPC ports.  In the case of NetScreen (ScreenOS) there is a checkbox in the rule to allow NetBios.


本文转自 zhangfang526 51CTO博客,原文链接:http://blog.51cto.com/zhangfang526/1729880


相关文章
|
网络协议 网络安全 Docker
Docker Swarm 解决报错Error response from daemon: rpc error: code = Unavailable desc = connection error:
本文是博主学习docker swarm遇到的问题记录,希望对大家有所帮助。
1634 0
Docker Swarm 解决报错Error response from daemon: rpc error: code = Unavailable desc = connection error:
|
8月前
|
负载均衡 Dubbo Java
Dubbo 3.x:探索阿里巴巴的开源RPC框架新技术
随着微服务架构的兴起,远程过程调用(RPC)框架成为了关键组件。Dubbo,作为阿里巴巴的开源RPC框架,已经演进到了3.x版本,带来了许多新特性和技术改进。本文将探讨Dubbo 3.x中的一些最新技术,包括服务注册与发现、负载均衡、服务治理等,并通过代码示例展示其使用方式。
431 9
|
8月前
|
JSON 负载均衡 网络协议
Rpc编程系列文章第二篇:RPC框架设计目标
Rpc编程系列文章第二篇:RPC框架设计目标
|
8月前
|
设计模式 负载均衡 网络协议
【分布式技术专题】「分布式技术架构」实践见真知,手把手教你如何实现一个属于自己的RPC框架(架构技术引导篇)
【分布式技术专题】「分布式技术架构」实践见真知,手把手教你如何实现一个属于自己的RPC框架(架构技术引导篇)
323 0
|
8月前
|
Dubbo Java 应用服务中间件
Rpc编程系列文章第三篇:Hessian RPC一个老的RPC框架
Rpc编程系列文章第三篇:Hessian RPC一个老的RPC框架
|
2月前
|
自然语言处理 负载均衡 API
gRPC 一种现代、开源、高性能的远程过程调用 (RPC) 可以在任何地方运行的框架
gRPC 是一种现代开源高性能远程过程调用(RPC)框架,支持多种编程语言,可在任何环境中运行。它通过高效的连接方式,支持负载平衡、跟踪、健康检查和身份验证,适用于微服务架构、移动设备和浏览器客户端连接后端服务等场景。gRPC 使用 Protocol Buffers 作为接口定义语言,支持四种服务方法:一元 RPC、服务器流式处理、客户端流式处理和双向流式处理。
|
5月前
|
Dubbo 网络协议 Java
RPC框架:一文带你搞懂RPC
这篇文章全面介绍了RPC(远程过程调用)的概念、原理和应用场景,解释了RPC如何工作以及为什么在分布式系统中广泛使用,并探讨了几种常用的RPC框架如Thrift、gRPC、Dubbo和Spring Cloud,同时详细阐述了RPC调用流程和实现透明化远程服务调用的关键技术,包括动态代理和消息的编码解码过程。
RPC框架:一文带你搞懂RPC
|
4月前
|
XML 负载均衡 监控
分布式-dubbo-简易版的RPC框架
分布式-dubbo-简易版的RPC框架
|
7月前
|
存储 缓存 Linux
【实战指南】嵌入式RPC框架设计实践:六大核心类构建高效RPC框架
在先前的文章基础上,本文讨论如何通过分层封装提升一个针对嵌入式Linux的RPC框架的易用性。设计包括自动服务注册、高性能通信、泛型序列化和简洁API。框架分为6个关键类:BindingHub、SharedRingBuffer、Parcel、Binder、IBinder和BindInterface。BindingHub负责服务注册,SharedRingBuffer实现高效数据传输,Parcel处理序列化,而Binder和IBinder分别用于服务端和客户端交互。BindInterface提供简单的初始化接口,简化应用集成。测试案例展示了客户端和服务端的交互,验证了RPC功能的有效性。
462 7
下一篇
开通oss服务