本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- 龙儿筝
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- zhanjia
- ajinn
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
DependencyResolutionException
This error generally occurs when Maven could not download dependencies. Possible causes for this error are:
The POM misses the declaration of the <repository> which hosts the artifact.
The r ...
hadoop常见问题-no datanode to stop
现象:当停止Hadoop的时候发现no datanode to stop的信息。
原因1:每次namenode format会重新创建一个namenodeId,而tmp/dfs/data下包含了上次format下的id,namenode format清空了namenode下的数据,但是没有清空
hadoop常见问题-Browse the filesystem链接打不开
现象:在访问Master:50070之后,点击browse the filesystem后,该页无法显示。
原因:点击browse the filesystem后,网页转向的地址用的是hadoop集群的某一个datanode的主机名,由于客户端的浏览器无法解析这个主机名,因此该页无法显示。
解决:需要在客户端的hosts文件里加入hadoop集群的
hadoop常见问题-too many fetch-failures
现象:
12/12/05 17:06:19 INFO mapred.JobClient: Task Id : attempt_201212051618_0002_m_000035_0, Status : FAILED
Too many fetch-failures
12/12/05 17:06:19 INFO mapred.JobClient: Task Id : attempt ...
java.lang.IllegalAccessError: tried to access field org.slf4j.impl.StaticLoggerB
java.lang.IllegalAccessError: tried to access field org.slf4j.impl.StaticLoggerBinder.SINGLETON from class org.slf4j.LoggerFactory
问题原因:jar文件版本冲突
在slf4j-log4j12(slf4j-nop.jar, slf4j-simple.jar, ...
ubuntu下mysql无法启动Couldn't find MySQL server (/usr/bin/mysqld_safe)”
ubuntu下mysql无法启动Couldn't find MySQL server (/usr/bin/mysqld_safe)”
fix:
删除my.cnf
rm /etc/mysql/my.cnf
org.hibernate.PropertyValueException: not-null property references a null or tra
org.hibernate.PropertyValueException: not-null property references a null or transient value
at org.hibernate.engine.internal.Nullability.checkNullability(Nullability.java:103)
at org.hibernate.actio ...
no acceptable C compiler found in $PATH
安装python2.7的时候,提示我没有C编译器,只需要安装gcc即可
$ sudo apt-get install gcc
安装完GCC之后,可以configure,但是make的时候还会提示错误:bash: make: command not found
这是因为没有安装make,
configure: error: Unable to find a working C++ compiler
如果有这样的错误信息:
“configure: error: C++ compiler cannot create executables"
说明没装gcc或者装了gcc,没装g++
我这ubuntu10.10就是没有g++,
最后是apt-get install g++,修复了congfiure不通的错误。
You need to install c++ on your c ...
java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path i
java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path in absolute URI: hdfs://localhost:49000.tmp at org.apache.hadoop.fs.Path.initialize(Path.java:148) at org.a ...
exception异常分类
基类为Throwable,Error和Exception继承Throwable
Error类体系描述了Java运行系统中的内部错误以及资源耗尽的情形。应用程序不应该抛出这种类型的对象(一般是由虚拟机抛出)。
Exception体系包括RuntimeException体系和其他非RuntimeException的体系 :
① RuntimeException:RuntimeException体系包括错 ...
Version 1.5.0_07 of the JVM is not suitable for this product. Version: 1.6 or gr
在今天启动Eclipse的时候遇到一个Version 1.5.0_07 of the JVM is not suitable for this product. Version: 1.6 or greater is required. 的错误,我尝试着到eclipse安装路径下面的配置文件找到些信息,但是没有结果,于是想到可能跟最近新安卓的数据库有关系,因为数据库的jdk的版本一般会稍微低一些, ...
关于异常返回值和递归的一点思考
1.异常返回值
我们知道异常的框架如:
try{
//异常代码
}catch() {
}finally{
}
代码是最好的说明:
public class ExpRetVal {
public static int func() {
try{
throw new Exception(){};
}catch(Exception e) ...
启动webservice时候抛出异常:java.security.PrivilegedActionException
Exception in thread "main" javax.xml.ws.WebServiceException: Unable to create JAXBContext
at com.sun.xml.internal.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java ...