블로그 이미지
개발 블로그였지만 맛집을 더 많이 올리고있어서 잡동사니로 재 명명함ㅋㅋ 꽃현주

카테고리

분류 전체보기 (24)
Essay (1)
Development (12)
Tip/Info (8)
Book (1)
Item (2)
Total
Today
Yesterday

'Development'에 해당되는 글 12건

  1. 2014.01.25 리눅스 서버간 자동 로그인
  2. 2014.01.22 Aggregator 2
  1. RSA알고리즘의 SSH Key 쌍을 생성 
    • ssh-keygen -t rsa
  2. 공개키를 연결 할 서버에 전송 
    • ssh-copy-id id@remote_host
  3. 접속 해보기 
    • ssh id@remote_host


만약 키를 만들고 자동 로그인을 시도했는데, 비밀번호를 또 물어 본다면?!

(1)접속 할 서버 계정 홈의 .ssh 디렉토리의 authorized_keys파일 권한을 600으로 변경! 

(2) .ssh디렉토리 & 자신의 홈디렉토리 권한 700으로 변경!!

 (어제 이 것 때매 한참 삽질함 ㅠㅠ 하지만 우리팀 에이스님이 자비롭게 알려줌ㄱㅅ )

> cd ~

> chmod 700 ~

> ls -la

> chmod 700 .ssh

> cd .ssh 

> chmod 600 authorized_keys


 ' '나름 콘솔같지 않음? 사실 표임 ㅋㅋㅋ


Posted by 꽃현주
, |

Aggregator

Development/Cascading / 2014. 1. 22. 23:00

Aggregator에서 필수로 구현해야되는 start method 에서 보통 setContext에 들어 갈 자료형을 생성하는데 

이 때  aggregatorCall.getContext() == null 이 아닐 경우 Context를 꼭 clear 해 줘야 한다. 

Aggregator의 Context가 재사용 되면서 값이 꼬인다.   


public void start(FlowProcess flowProcess, AggregatorCall<HashMap<String, Long>> aggregatorCall) {

        if (aggregatorCall.getContext() == null) {

            aggregatorCall.setContext(new HashMap<String, Long>());

        } else {

            aggregatorCall.getContext().clear();

        }

    }

'Development > Cascading' 카테고리의 다른 글

[cascading] TemplateTap deprecated !!  (0) 2014.10.08
About Cascading?  (0) 2014.02.03
Posted by 꽃현주
, |

최근에 달린 댓글

최근에 받은 트랙백

글 보관함