본문 바로가기

전체 글382

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.
Frequently used bash commands 자주 사용하는 Bash 명령어들을 정리해보았다.ArrayAssociative Array12345678910111213declare -A fullAddr # Create an associative array fullAddr[inc]=Incheon # Insert key,value to arrayfullAddr[sul]=Seoul # Insert key,value to array location=incecho "Address List : ${fullAddr[@]}"echo "Current Address : ${fullAddr[${location}]}" # export env by using the value of variable# (ex) export TEST_SRC=/home/myaccountprefix=.. 2014. 3. 31.
Hadoop 1.2.1 Installation & Troubleshooting Installation Check the firewalls among servers. ( Recommended to open all ports among servers )Create same account( TEST_ACCOUNT ) to all servers.Create public key of TEST_ACCOUNT for each server. ( ssh-keygen )Authorize public key of TEST_ACCOUNT in master server to each slave server TEST_ACCOUNT so that master account can access each slave servers through ssh( FILE : $HOME/.ssh/authorized_keys.. 2014. 2. 3.
phps.kr linux 서버 구축 순 (cont.d) 서버 사양 : Ubuntu 10.04 LTS 512MB HDD 20GB 아래의 command는 root 에서 실행하였음 1. nginx / mysql / php-fpm $ aptitude install python-software-properties$ add-apt-repository ppa:brianmercer/php$ apt-get updateW: GPG 오류: http://ppa.launchpad.net lucid Release: 다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다: NO_PUBKEY A42227CB8D0DC64F$ gpg --keyserver keyserver.ubuntu.com --recv A42227CB8D0DC64F$ gpg --export --armor A42227CB8.. 2014. 1. 16.