上一页 1 2 3 4 5 6 7 ··· 28 下一页
摘要: 系统 linux,增加SSH终端连接数最大为1000个解决方案:vi /etc/ssh/sshd_config输入/MaxStartups 定位到如下并修改1) #MaxStartups 10,#去掉,修改10为1000,MaxStartups 10002) 重启SSH服务,/etc/rc.d/in... 阅读全文
posted @ 2015-07-27 11:40 勿妄 阅读(22377) 评论(0) 推荐(0) 编辑
摘要: 1.工具类 1 package com.lixin.stuty.hbase; 2 3 import java.io.IOException; 4 5 import org.apache.commons.configuration.ConfigurationUtils; 6 impor... 阅读全文
posted @ 2015-07-21 15:32 勿妄 阅读(1792) 评论(0) 推荐(0) 编辑
摘要: Eclipse调试Java的10个技巧 阅读全文
posted @ 2015-07-20 11:10 勿妄 阅读(103) 评论(0) 推荐(0) 编辑
摘要: zip扮演着归档和压缩两个角色;gzip并不将文件归档,仅只是对单个文件进行压缩,所以,在UNIX平台上,命令tar通常用来创建一个档案文件,然后命令gzip来将档案文件压缩。Java I/O类库还收录了一些能读写压缩格式流的类。要想提供压缩功能,只要把它们包在已有的I/O类的外面就行了。这些类不是... 阅读全文
posted @ 2015-07-17 19:51 勿妄 阅读(5356) 评论(0) 推荐(0) 编辑
摘要: HBase社区的过去、现在及未来 Apache HBase社区发布了Apache HBase 1.0.0。它花费了七年时间在Apache HBase项目领域取得了里程碑式的发展,这次发布提供了一些令人兴奋的特性和并未牺牲稳定性的新API,无论在线还是在硬盘上都与HBase 0.98.x兼容。让我们... 阅读全文
posted @ 2015-07-15 15:55 勿妄 阅读(254) 评论(0) 推荐(0) 编辑
摘要: HBase Shell输入命令无法删除问题解决技巧 阅读全文
posted @ 2015-07-14 10:35 勿妄 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1.启动hive报错: Logging initialized using configuration in jar:file:/usr/local/hive-1.2.1/lib/hive-common-1.2.1.jar!/hive-log4j.properties[ERROR] Termina... 阅读全文
posted @ 2015-07-13 09:49 勿妄 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 1. 取某个范围的任意数public static String getRandom(int min, int max){Random random = new Random();int s = random.nextInt(max) % (max - min + 1) + min;return S... 阅读全文
posted @ 2015-07-10 10:11 勿妄 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Eclipse juno 中安装 JBoss Tools,集成Hibernate 阅读全文
posted @ 2015-07-02 16:50 勿妄 阅读(94) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/jolingogo/article/category/1387847/2 阅读全文
posted @ 2015-07-02 16:06 勿妄 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 28 下一页