Author Archives: apollo89

About apollo89

아폴로89 입니다.

Flume 설치

  1. Flume 설치 ]$ wget https://github.com/downloads/cloudera/flume/flume-distribution-0.9.4-bin.tar.gz ]$ tar xvzf flume-distribution-0.9.4-bin.tar.gz ]$ ln -s flume-distribution-0.9.4 flume ]$ cd /service/workspace/flume 2 Flume 설정 2.1 flume-site.xml 설정 ]$ vi conf/flume-site.xml … flume.master.servers localhost This is the address for the config servers status … Continue reading

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

Hive 설치

  1 Hive 설치 설치 위치 : /service/workspace (각자 환경에 맞게 구성) ]$ wget http://mirror.apache-kr.org/hive/hive-0.8.1/hive-0.8.1.tar.gz ]$ tar xvzf hive-0.8.1.tar.gz ]$ ln -s hive-0.8.1 hive ]$ cd /service/workspace/hive&nbsp; 2 Hive 설정 2.1 hive-site.xml 설정 ]$ vi conf/hive-site.xml <?xml version=”1.0″?> <?xml-stylesheet type=”text/xsl” … Continue reading

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

Zookeeper 설치

  1 Zookeeper 설치 설치 위치 : /service/workspace (각자 환경에 맞게 구성) ]$ wget http://ftp.daum.net/apache/zookeeper/zookeeper-3.3.4/zookeeper-3.3.4.tar.gz ]$ tar xvzf zookeeper-3.3.4.tar.gz ]$ ln -s zookeeper-3.3.4 zookeeper ]$ cd /service/workspace/zookeeper 2 Zookeeper 설정 2.1 zoo.cfg 설정 ]$ cp conf/zoo_sample.cfg conf/zoo.cfg ]$ vi conf/zoo.cfg … Continue reading

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

Hadoop 설치

  1 Hadoop 설치 설치 위치 : /service/workspace (각자 환경에 맞게 구성) ]$ wget http://apache.tt.co.kr/hadoop/common/hadoop-1.0.0/hadoop-1.0.0.tar.gz ]$ tar xvzf hadoop-1.0.0.tar.gz ]$ ln -s hadoop-1.0.0 hadoop ]$ cd /service/workspace/hadoop 2 Hadoop 설정 2.1 core-site.xml 설정 ]$ vi conf/core-site.xml … <property> <name>fs.default.name</name> <value>hdfs://localhost:9000</value> … Continue reading

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

작품, 결과물이 나오기까지..

  어떤 사상이 담긴 작품(?) 또는 결과물에는 그 사람의 의도 또는 세계관이 담겨 있다.. 그 세계관은 자신에 대한 정체성으로 부터 나오고 그런 정체성은 경험 또는 추억에서 부터 시작되는 것 같다. 그렇다면 경험 -> 기억 -> 추억 -> 아이덴티티(정체성) -> 세계관 … Continue reading

Posted in Etc | Tagged , , , , | 1 Comment

우분투에 원격 데스트톱 연결(xrdp)

  우분투에 원격 데스트톱 연결(xrdp) 1. 설치. $ sudo apt-get install xrdp 2. 설정 설치된 홈 폴더의 .xsession 파일에 다음 줄을 추가 $ sudo vi ~/.xsession gnome-session –session=ubuntu-2d 3. 접속 윈도우의 원격 데스크탑 연결을 열어 접속. 정상으로 RDP 연결이 되었습니다. … Continue reading

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

eclipse svn password reset

  eclipse svn password reset eclipse 의 svn 에서 비밀번호가 틀렸는데 다시 안물어볼 때 난감하다.ㅠㅍㅠ 아래의 디렉토리를 지우고 eclipse를 재시작하고 svn 연결시도를 하면 다시 인증하라는 팝업 창이 뜬다.(Windows 7 기준) C:\Users\사용자명\AppData\Roaming\Subversion\auth  

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

redmine DB 백업, 파일 백업 스크립트

  redmine DB 백업, 파일 백업 스크립트 #!/bin/bash DATETIME=$(date +”%Y%m%d%H%M”) # DB backup mysqldump -u root -p******* redmine_dbname | gzip > /redmine_backup_dir/$DATETIME.sql.gz # file backup rsync -avz –delete /redmine_install_dir/files /redmine_backup_dir/ # delete old files find /redmine_backup_dir/ -name *.gz -mtime +90 … Continue reading

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