본문 바로가기

Tools for Dev69

Yeoman Troubleshooting 1. Error when “yo angular”"npm cache clean" and re-run the command “yo angular”123456789101112131415161718192021222324252627282930313233343536373839npm ERR! Error: ENOENT, lstat '/Users/finsternis/Documents/yeoman/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/examples/sum.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, .. 2014. 5. 30.
HDFS Errors Master Error Message1234567891011121314152013-07-15 13:36:59,258 ERROR org.apache.hadoop.security.UserGroupInformation: PriviledgedActionException as:cse cause:java.io.IOException: File /tmp/hadoop-cse/mapred/system/jobtracker.info could only be replicated to 0 nodes, instead of 12013-07-15 13:36:59,259 INFO org.apache.hadoop.ipc.Server: IPC Server handler 7 on 9000, call addBlock(/tmp/hadoop-cs.. 2013. 7. 15.
Summary on HDFS (Cont.) 분산 처리 관련 업무 중 HDFS 관련 조사가 필요하여 관련 분석 내용을 참고차 기록한다. HDFS supports following read/write policiesreadrandom readsequential readwritesequential writeBlock size, the number of replica can be set for each file. 2013. 7. 9.
하나의 repository에서 git 과 svn을 동시에 사용할 때 유용한 Tip .gitignore 에 아래의 항목을 추가해야 svn의 시스템 파일들이 포함되지 않는다.*.svn* .svn 밑의 파일들이 git에 포함된 경우 실제파일은 지우지 않고 git내의 색인대상에서만 삭제하는 명령어 ( removing svn system files in git index data instead of doing real data )$ find . -name "*.svn*" -type f -exec git rm --cached {} \; 2012. 7. 25.