上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页
摘要: svn查看代码作者的命令 阅读全文
posted @ 2016-08-29 10:51 Entropy_lxl 阅读(1576) 评论(0) 推荐(0)
摘要: maven编译项目时报错:Failed to execute goal org.codehaus.mojo:rpm-maven-plugin:2.1.1:rpm (default) on project 原因: 没有安装rpm. 安装rpm build工具包: 或者 具体错误是: 阅读全文
posted @ 2016-08-25 19:56 Entropy_lxl 阅读(7223) 评论(0) 推荐(0)
摘要: 解决方法如下(修改dns配置) vi /etc/resolv.conf 在此文件最后加入:nameserver 8.8.8.8 如果没有vi编辑器可用: echo "nameserver 8.8.8.8" >>/etc/resolv.conf 阅读全文
posted @ 2016-08-24 17:50 Entropy_lxl 阅读(209) 评论(0) 推荐(0)
摘要: 原因是run configuration -> maven -> preject name -> Parameters -> command line中是install:install. 改成install就可以了. 参考: http://stackoverflow.com/questions/63 阅读全文
posted @ 2016-08-17 17:15 Entropy_lxl 阅读(20581) 评论(0) 推荐(2)
摘要: standby NN每隔一段时间(由参数dfs.ha.tail-edits.period决定,默认是60s)去检查Journal node上新的Edits log文件。 standby NN每隔一段时间(由参数dfs.namenode.checkpoint.check.period决定,默认是60s 阅读全文
posted @ 2016-08-17 11:48 Entropy_lxl 阅读(548) 评论(0) 推荐(0)
摘要: 解压rpm包的内容:(没有安装,就像解压tgz包一样rpm包)rpm2cpio *.rpm | cpio -div 解压war包的内容: jar -xvf project.war 解压到当前目录 阅读全文
posted @ 2016-08-12 16:32 Entropy_lxl 阅读(2288) 评论(0) 推荐(0)
摘要: Actor UntypedActor actor的基类,继承并实现onReceive方法就可以得到一个Actor。 Props 配置类,用Props.create可以创建一个按指定配置生成的Actor。 Props的推荐实践,创建Actor时,搞一个static的Props.create方法。可以少 阅读全文
posted @ 2016-08-12 12:49 Entropy_lxl 阅读(777) 评论(0) 推荐(0)
摘要: 我是在flume向hdfs 写(sink)数据时遇到的这个错误. Server (是指hdfs) asks us to fall back to SIMPLE auth, but this client (是指flume) is configured to only allow secure (是指 阅读全文
posted @ 2016-08-11 10:41 Entropy_lxl 阅读(4840) 评论(0) 推荐(0)
摘要: find /usr/lib -name "*.jar" -exec grep -Hsli 类名 {} \; 阅读全文
posted @ 2016-08-11 10:19 Entropy_lxl 阅读(2890) 评论(0) 推荐(0)
摘要: My flume app is attempting to write to HDFS on a path thats not been created/granted for it. The path is /tmp, create it manually and grant flume writ 阅读全文
posted @ 2016-08-10 10:40 Entropy_lxl 阅读(920) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页