在启动dubbo框架时报错。Unable to connect to zookeeper server within timeout: 5000
这是因为zookeeper服务没有启动,所以会报错超时。只要启动zookeeper就行了。
zookerper的启动很简单的,网上随便搜搜都有。
在启动dubbo框架时报错。Unable to connect to zookeeper server within timeout: 5000的更多相关文章
- Unable to connect to zookeeper server within timeout: 5000
		错误 严重: StandardWrapper.Throwable org.springframework.beans.factory.BeanCreationException: Error crea ... 
- Caused by: org.I0Itec.zkclient.exception.ZkTimeoutException: Unable to connect to zookeeper server within timeout: 5000
		org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'brandControl ... 
- zookeeper超时:Unable to connect to zookeeper server within timeout: 5000
		解决措施: 1:检查 提供方和消费方的address是否正确 <dubbo:application name="dubboxdemo-servive"/> <du ... 
- org.I0Itec.zkclient.exception.ZkTimeoutException: Unable to connect to zookeeper server within
		org.I0Itec.zkclient.exception.ZkTimeoutException: Unable to connect to zookeeper server within timeo ... 
- CentOS7图形界面启动报错unable to connect to X server
		以前还可以正常启动图形界面,这次启动失败,报错unable to connect to X server 使用的是oracle用户,因为我是在oracle用户下创建的oracle数据库等 解决办法: ... 
- tomcat启动后,页面浏览时报错 Unable to compile class for JSP的解决方案
		转:tomcat启动后,页面浏览时报错 Unable to compile class for JSP的解决方案 检查tomcat与web工程对应版本,tomcat中对应版本的jar包拷贝到web工程 ... 
- netserver启动时报错 "Unable to start netserver with 'IN(6)ADDR_ANY' port '12865' and family AF_UNSPEC'"
		netperf启动netserver时报错 "Unable to start netserver with 'IN(6)ADDR_ANY' port '12865' and family A ... 
- mysql启动时报错:Starting MySQL... ERROR! The server quit without updating PID file (/opt/mysql/data/mysql.pid)
		mysql启动报错Starting MySQL... ERROR! The server quit without updating PID file (/opt/mysql/data/mysql.p ... 
- C# 解决SharpSvn启动窗口报错 Unable to connect to a repository at URL 'svn://....'
		在远程机打开sharpsvn客户端测试,结果报错 Svn启动窗口报错 Unable to connect to a repository at URL 'svn://...' 咋整,我在win10我的 ... 
随机推荐
- windows核心编程---第五章 线程的基础
			与前面介绍的进程一样,线程也有两部分组成.一个是线程内核对象.它是一个数据结构,操作系统用它来管理线程以及用它来存储线程的一些统计信息.另一个是线程栈,用于维护线程执行时所需的所有函数参数和局部变量. ... 
- WPF的Binding学习笔记(二)
			原文: http://www.cnblogs.com/pasoraku/archive/2012/10/25/2738428.htmlWPF的Binding学习笔记(二) 上次学了点点Binding的 ... 
- super.onCreate(SavedInstanceState);
			super.onCreate(SavedInatanceState)时调用父类的构造方法,SavedInstanceState是保存当前Activity的状态信息. onCreate方法的参数是Bun ... 
- LeetCode 【190. Reverse Bits】
			Reverse bits of a given 32 bits unsigned integer. For example, given input 43261596 (represented in ... 
- validate
			<?php $rules = [ "ip" => function ($var) {return ip2long($var);}, "email" ... 
- Maven学习5-聚合与继承
			一.聚合 如果我们想一次构建多个项目模块,那我们就需要对多个项目模块进行聚合 1.1.聚合配置代码 1 <modules> 2 <module>模块一</module&g ... 
- 如何解决虚拟机克隆导致"Bringing up interface eth0:  Error: No suitable device found: no device found for connection 'System eth0'."
			在VMware的虚拟机中克隆CentOS,在重启网卡的时候报错: Bringing up interface eth0: Error: No suitable device found: no de ... 
- express创建项目
			sudo apt-get install node-express-generator dave@voctrals:~/WebstormProjects/nodejs-study/express$ e ... 
- jquery获得图片的真实大小
			$(function(){ var imgSrc = $("#image").attr("src"); getImageWidth(imgSrc,functio ... 
- 【solr】java整合solr5.0之solrj的使用
			1.首先导入solrj需要的的架包 2.需要注意的是低版本是solr是使用SolrServer进行URL实例的,5.0之后已经使用SolrClient替代这个类了,在添加之后首先我们需要根据schem ... 
