기본 콘텐츠로 건너뛰기

3월, 2017의 게시물 표시

업로드 및 mybatis

http://jsonobject.tistory.com/225 Spring Boot, MyBatis 연동으로 MySQL 데이터베이스 질의하기 출처:  http://jsonobject.tistory.com/225  [지단로보트의 블로그] http://jsonobject.tistory.com/228 Spring Boot, Multipart 파일 업로드 구현하기 출처:  http://jsonobject.tistory.com/228  [지단로보트의 블로그]

hadoop hdfs kerberos authenication java

goal |------ webserver -|                                       |-----hadoop namenode -----| |   192.168.0.230 -|                                        |   hdfs://192.168.0.230:9000 | * upload file from webserver to hadoop hdfs . * development language java * kerberos authenication    ref  https://community.hortonworks.com/articles/56702/a-secure-hdfs-client-example.html 주제 Authentication with Kerberos 구글 검색어 : hadoop hdfs java client example 이해 해야 할 문서 https://community.hortonworks.com/articles/56702/a-secure-hdfs-client-example.html 읽어 봤는데  잘 모르겠다. 이해 할때까지 부족한 부분을 채우자. <h2>kerberos 란? </h2> Oracle Solaris 관리: 보안 서비스  - Kerberos 서비스  https://docs.oracle.com/cd/E26925_01/html/E25888/seamtm-1.html#scrolltoc <h2>hdfs 코드 자체는 간단하다.</h2> <code> Configuration conf = new Configuration(); conf.set("fs.defaultFS","hdfs://one.hdp:8020"); FileSystem fs = FileSystem.get(conf);