티스토리 뷰
728x90
private Configuration getConf() {
Configuration conf = new Configuration(true);
conf = HBaseConfiguration.create(conf);
conf.set("hbase.zookeeper.quorum", zkQuorm);
conf.set("hbase.zookeeper.property.clientPort", zkPort);
if (StringUtils.isNotBlank(zkBasePath)) {
conf.set("zookeeper.znode.parent", zkBasePath);
}
conf.setInt("hbase.rpc.timeout", Integer.parseInt(rpcTimeout));
conf.set("hbase.client.scanner.timeout.period", "1500");
conf.set("hbase.cells.scanned.per.heartbeat.check", "10000");
conf.set("zookeeper.session.timeout", "10000");
conf.setInt("hbase.client.pause", 1000);
conf.setInt("hbase.client.retries.number", Integer.parseInt(retriesNumber));
return secure(conf);
}
private Configuration secure(Configuration conf) {
if(!CommonUtils.Y.equals(isSecure)) {
return conf;
}
File krb5 = FileUtils.streamToFile(getClass().getClassLoader().getResourceAsStream("krb5.conf"));
File jaas = FileUtils.streamToFile(getClass().getClassLoader().getResourceAsStream("jaas.conf"));
System.setProperty("zookeeper.sasl.client", "false");
System.setProperty("java.security.krb5.conf", krb5.getPath());
System.setProperty("java.security.auth.login.config", jaas.getPath());
conf.set("hadoop.security.authentication", "Kerberos");
conf.set("hbase.security.authentication", "Kerberos");
conf.set("hbase.master.kerberos.principal", "hbase/_HOST@HBASE.ITSC.COM");
conf.set("hbase.regionserver.kerberos.principal", "hbase/_HOST@HBASE.ITSC.COM");
FileUtils.checkFile(krb5.getPath());
FileUtils.checkFile(jaas.getPath());
UserGroupInformation.setConfiguration(conf);
try {
File file = FileUtils.streamToFile(getClass().getClassLoader().getResourceAsStream(keytab));
UserGroupInformation.loginUserFromKeytab(principal, file.getPath());
ConnectionFactory.createConnection(conf);
} catch (IOException e) {
LOGGER.error(e.getMessage(), e);
}
return conf;
}
https://stackoverflow.com/questions/23561736/java-client-for-secure-hbase
Java Client For Secure Hbase
Hi I am trying to write a java client for secure hbase. I want to do kinit also from code itself for that i`m using the usergroup information class. Can anyone point out where am I going wrong her...
stackoverflow.com
728x90
'공부' 카테고리의 다른 글
Spring Boot application can't resolve the org.springframework.boot package (0) | 2020.07.13 |
---|---|
[Python] django 1.7 migrate gets error “table already exists” (0) | 2020.07.13 |
[Java] read file in jar (0) | 2020.07.13 |
[Jetbrains] Reformat File dialog & short cut ⌥⇧⌘L (0) | 2020.07.13 |
[Linux] which command (0) | 2020.07.13 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 테슬라 추천
- 테슬라 리퍼럴 코드
- Kluge
- 테슬라
- 테슬라 리퍼럴 코드 생성
- 어떻게 능력을 보여줄 것인가?
- wlw
- 할인
- Bot
- 김달
- 팔로워 수 세기
- 모델y
- 개리마커스
- 메디파크 내과 전문의 의학박사 김영수
- 유투브
- 테슬라 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 인스타그램
- follower
- 레퍼럴
- 연애학개론
- 테슬라 레퍼럴 적용 확인
- 클루지
- 테슬라 레퍼럴 코드 확인
- 모델 Y 레퍼럴
- COUNT
- 책그림
- 테슬라 크레딧 사용
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
글 보관함