Tag Archives: 설치

ubuntu linux 에서 Volatility 설치

ubuntu linux 에서 Volatility 설치 1. 필요 라이브러리 설치

proxy 환경일 경우 apt-get를 아래와 같이 설정한다.

또는

2. Volatility 설치

proxy 환경일 경우 svn 를 아래와 같이 설정한다.

3. python module 설치 proxy 환경일 경우 … Continue reading

Posted in Security/Hacking, Util/Tools | Tagged , , | Leave a comment

munin 설치 및 설정하기

  서버를 모니터링 해야 할 일이 생겨 좋은 도구를 찾다가 발견했다. MUNIN ( http://munin-monitoring.org/ ) 설치를 해보자..

yum으로 설치할랬더니.. 위와 같이 못찾는 단다..ㅡㅡ;; 검색을 좀 해보니.. EPEL repository를 설치해야 한단다.. EPEL 이란 Extra Packages of Enterprise Linux 를 뜻하며 … Continue reading

Posted in System, Util/Tools | Tagged , , | Leave a comment

oozie 설치 성공!

  어제의 oozie 설치 삽질기 에 많은 분의 조언을 주셨다.. sstrato.kong 님께서 제일 먼저 3.3.0사용하시라고 조언을.. 3.0.1(https://github.com/yahoo/oozie) 버전이 최신인줄 알고 받았더니.. 알고보니 3.3.1(https://github.com/apache/oozie)이 최신..OTL 그루터의 김형준 수석님께서도 깨알같은 조언을.. oozie-site.xml 설정에서 조금 이상한게 mysql 드라이버 설정 및 서버 설정을 oozie.service.JPAService.jdbc.driver, … Continue reading

Posted in Bigdata/Hadoop, Database, Util/Tools | Tagged , , | 1 Comment

oozie 설치 삽질기..

  workflow 를 시스템에 적용해보기 위해 Hadoop WMS(Workflow Management System) 에 대해서 알아보고 있다. 우선 검토한 시스템은 Oozie 와 Azkaban, Cascading, Hamake 를 조사해봤다. 이번에는 실제로 oozie 를 설치해보려고 시도했지만 실패.. 혹시 원인을 아시는 분은 알려주세요..ㅠㅠ oozie 를 설치하기 위해 … Continue reading

Posted in Bigdata/Hadoop | Tagged , | 3 Comments

Hamake 특징 및 설치, Examples 실행

  데이터 중심(data-driven)의 WorkFlow를 설정할 수 있는 Utillity 특징 – 경량 유틸리티 – 복잡한 설치 필요 없음 – 데이터 흐름 프로그래밍 모델 기반(DAG) – 쉬운 학습 곡선. – 아마존 Elastic MapReduce 지원 – MapReduce 작업뿐만 아니라 PIG Latin scripts를 실행 … Continue reading

Posted in Bigdata/Hadoop, Util/Tools | Tagged , , , , | Leave a comment

HAMAKE 소개

  요즘 Workflow에 관련해서 자료를 조사하고 있는데.. 간단한거라 영어 공부도 해볼겸 번역해 보았습니다. 발번역이라 엉망인데 많은 조언 부탁드립니다. 원문 : http://code.google.com/p/hamake/#Introduction //====================================================================== HAMAKE Introduction Most non-trivial data processing scenarios with Hadoop typically require more than one MapReduce job. Usually such … Continue reading

Posted in Bigdata/Hadoop, English | Tagged , , , , | Leave a comment

구글 drive api 사용기

구글 drive api 사용기 python 구글 drive api 홈페이지 : https://developers.google.com/drive/ 죄측 메뉴 Quickstart > python : https://developers.google.com/drive/quickstart-python 비디오 https://developers.google.com/drive/quickstart-python#optional_view_a_quickstart_video 1단계 : Enable the Drive API 1. Create an API project in the Google APIs Console. 2. Select the Services … Continue reading

Posted in Python/Ruby/Perl, Util/Tools | Tagged , , , , , , | Leave a comment

websvn 설치

  svn 리파지토리를 웹으로 봐야 하는 일이 생겼다. 그래서 리파지토리 뷰를 위해 websvn 을 설치해보았다. 1. WebSVN 다운로드 – http://websvn.tigris.org 2. WebSVN 압축 해제

3. config.php 수정

4. command.php 수정

5. 인증은 apache의 기본인증을 사용하기 위해 passwd … Continue reading

Posted in SCM/ITS, WEB/WAS | Tagged , , , , , , | Leave a comment

nexus 설치 및 설정

  nexus 설치 및 설정 URL : http://www.sonatype.org/nexus/go Download Nexus 2.3.0 설치 및 서비스 포트 변경

관리자웹 로그인 http://domain:8090/nexus/ Username: admin Password: admin123 기본설정 Administration > Server 에서 Anonymous Access에서 체크를 풀어서 로그인 안하면 못들어오도록 설정 Security > user … Continue reading

Posted in SCM/ITS | Tagged , , , | Leave a comment

mysql replication 구성

  mysql replication 구성 1. mysql rpm 설치 mysql 홈페이지에서 최신버전 다운로드 http://www.mysql.com/downloads/mysql/ MySQL Community Server 5.5.20 – Linux – Generic 우리가 필요한 Client Utilities와 MySQL Server를 받는다. (MySQL-client-5.5.20-1.linux2.6.x86_64.rpm, MySQL-server-5.5.20-1.linux2.6.x86_64.rpm) Master에 Mysql rpm으로 설치

Slave에 Mysql rpm으로 설치

Continue reading

Posted in Database | Tagged , , | 2 Comments